AnimationsEditor.css 466 B

1234567891011121314151617181920212223242526272829303132
  1. .AnimationsEditor {
  2. padding: 5px;
  3. }
  4. .AnimationsEditor .AnimationsEditorContainer {
  5. width: 100%;
  6. height: 100%;
  7. }
  8. .AnimationsEditor canvas {
  9. border-radius: 3px;
  10. }
  11. /* light */
  12. .light .AnimationsEditor .AnimationsEditorContainer {
  13. background: #8e8e8e;
  14. }
  15. /* dark */
  16. .dark .AnimationsEditor .AnimationsEditorContainer {
  17. background: #3f3f3f;
  18. border-radius: 3px;
  19. }
  20. /* dark plus */
  21. .dark .AnimationsEditor {
  22. padding: 0px !important;
  23. }