log.scss 304 B

123456789101112131415
  1. #log-console {
  2. background: #333333;
  3. height: 100px;
  4. margin: 0;
  5. padding: 10px;
  6. width: calc(100% - 20px);
  7. overflow: hidden;
  8. overflow-y: auto;
  9. .log {
  10. color: white;
  11. font-size: 14px;
  12. font-family: 'Courier New', Courier, monospace;
  13. }
  14. }