1234567891011121314151617181920212223242526272829303132333435 |
- @use "sass:map";
- .ui-editor-menu {
- user-select: none;
- width: var(--editor-menu-width);
- filter: var(--editor-menu-filter);
- background-color: var(--editor-menu-back);
- position: fixed;
- left: var(--editor-menu-left);
- top: var(--editor-head-height);
- bottom: 0;
- z-index: 2;
- overflow: hidden;
- backdrop-filter: blur(4px);
- >div{
- height: 100%;
- width: 100%;
- overflow: auto;
- }
- .ui-editor-menu-ul {
- display: flex;
- flex-direction: column;
- min-height: 100%;
- }
- .ui-editor-menu-item {
- width: var(--editor-menu-width);
- height: var(--editor-menu-width);
- &.bottom {
- margin-top: auto;
- }
- }
- }
|