_toolbar.scss 668 B

123456789101112131415161718192021222324252627
  1. @use "sass:map";
  2. .ui-editor-toolbar {
  3. position: absolute;
  4. bottom: 0;
  5. right: calc(var(--editor-toolbox-width) + var(--editor-menu-right));
  6. display: flex;
  7. align-items: center;
  8. justify-content: center;
  9. flex: 1;
  10. height: var(--editor-toolbar-height);
  11. background-color: var(--editor-menu-back);
  12. pointer-events: all;
  13. left: var(--editor-toolbox-left);
  14. z-index: 1;
  15. transition: all 0.3s ease;
  16. &.full {
  17. left: calc(0px - var(--editor-menu-width)) !important;
  18. right: 0;
  19. }
  20. &.full-left {
  21. left: calc(0px - var(--editor-menu-width)) !important;
  22. }
  23. &.full-right {
  24. right: 0;
  25. }
  26. }