| 123456789101112131415161718192021222324252627 |
- @use "sass:map";
- .ui-editor-toolbar {
- position: absolute;
- bottom: 0;
- right: calc(var(--editor-toolbox-width) + var(--editor-menu-right));
- display: flex;
- align-items: center;
- justify-content: center;
- flex: 1;
- height: var(--editor-toolbar-height);
- background-color: var(--editor-menu-back);
- pointer-events: all;
- left: var(--editor-toolbox-left);
- z-index: 1;
- transition: all 0.3s ease;
- &.full {
- left: calc(0px - var(--editor-menu-width)) !important;
- right: 0;
- }
- &.full-left {
- left: calc(0px - var(--editor-menu-width)) !important;
- }
- &.full-right {
- right: 0;
- }
- }
|