_menu.scss 734 B

1234567891011121314151617181920212223242526272829303132333435
  1. @use "sass:map";
  2. .ui-editor-menu {
  3. user-select: none;
  4. width: var(--editor-menu-width);
  5. filter: var(--editor-menu-filter);
  6. background-color: var(--editor-menu-back);
  7. position: fixed;
  8. left: var(--editor-menu-left);
  9. top: var(--editor-head-height);
  10. bottom: 0;
  11. z-index: 2;
  12. overflow: hidden;
  13. backdrop-filter: blur(4px);
  14. >div{
  15. height: 100%;
  16. width: 100%;
  17. overflow: auto;
  18. }
  19. .ui-editor-menu-ul {
  20. display: flex;
  21. flex-direction: column;
  22. min-height: 100%;
  23. }
  24. .ui-editor-menu-item {
  25. width: var(--editor-menu-width);
  26. height: var(--editor-menu-width);
  27. &.bottom {
  28. margin-top: auto;
  29. }
  30. }
  31. }