overlay.scss 289 B

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