2862f00b6f87a23eee96e1a7cc0efc65558c7da3590d7d34355d5c34dae2a702b0ad1db98573e9eeb0c565128a301f54172579bd12c26986b5a8f85a58ada6 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. }