index.scss 452 B

123456789101112131415161718192021222324252627
  1. @import '../common/abstracts/variable';
  2. @import '../common/abstracts/mixin';
  3. @include b(resize) {
  4. @include e(container) {
  5. position: absolute;
  6. min-width: 1px;
  7. min-height: 1px;
  8. }
  9. @include e(wrapper) {
  10. position: absolute;
  11. top: 0;
  12. bottom: 0;
  13. left: 0;
  14. right: 0;
  15. z-index: -9999;
  16. overflow: hidden;
  17. visibility: hidden;
  18. @include m(placeholder) {
  19. transition: 0s;
  20. animation: none;
  21. }
  22. }
  23. }