overlay.scss 289 B

1234567891011121314151617
  1. @use 'mixins/mixins' as *;
  2. @use 'common/var' as *;
  3. @include b(overlay) {
  4. position: fixed;
  5. top: 0;
  6. right: 0;
  7. bottom: 0;
  8. left: 0;
  9. z-index: 2000;
  10. height: 100%;
  11. background-color: getCssVar('overlay-color', 'lighter');
  12. overflow: auto;
  13. #{& + '-root'} {
  14. height: 0;
  15. }
  16. }