You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
354 B

  1. .backdrop {
  2. position: fixed;
  3. top: 0;
  4. left: 0;
  5. z-index: $z-index-backdrop;
  6. width: 100%;
  7. height: 100%;
  8. background-color: $loading-backdrop-bg-color;
  9. visibility: hidden;
  10. opacity: 0;
  11. &.visible {
  12. visibility: visible;
  13. }
  14. &.active {
  15. opacity: 1;
  16. }
  17. @include transition($loading-backdrop-fadein-duration opacity linear);
  18. }