_head.scss 541 B

123456789101112131415161718192021222324
  1. @use "sass:map";
  2. .ui-editor-head {
  3. filter: var(--editor-head-filter);
  4. height: var(--editor-head-height);
  5. background-color: var(--editor-head-back);
  6. position: fixed;
  7. backdrop-filter: blur(4px);
  8. left: 0;
  9. top: 0;
  10. width: 100%;
  11. z-index: 4000;
  12. &::after{
  13. position: absolute;
  14. content: "";
  15. bottom: 0;
  16. left: 0;
  17. right: 0;
  18. height: 0px;
  19. line-height: 0;
  20. border-top: solid 1px rgba(255, 255, 255, 0.16);
  21. border-bottom: solid 1px #000;
  22. }
  23. }