log.scss 376 B

1234567891011121314151617181920
  1. #log-console {
  2. background: #333333;
  3. height: 120px;
  4. box-sizing: border-box;
  5. margin: 0;
  6. padding: 10px;
  7. width: 100%;
  8. overflow: hidden;
  9. overflow-y: auto;
  10. .log {
  11. color: white;
  12. font-size: 14px;
  13. font-family: 'Courier New', Courier, monospace;
  14. &.error {
  15. color:red;
  16. }
  17. }
  18. }