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.

_overlay.scss 681B

123456789101112131415161718192021222324252627282930313233343536
  1. .overlay {
  2. &__container,
  3. &__container-light {
  4. top: 0;
  5. left: 0;
  6. width: 100%;
  7. height: 100%;
  8. position: fixed;
  9. z-index: $overlayZ;
  10. background: $defaultBackground;
  11. }
  12. &__container-light {
  13. @include transparentBg($defaultBackground, 0.7);
  14. }
  15. &__content {
  16. position: absolute;
  17. margin: 0 auto;
  18. height: 100%;
  19. width: 56%;
  20. left: 50%;
  21. @include transform(translateX(-50%));
  22. &_bottom {
  23. position: absolute;
  24. bottom: 0;
  25. }
  26. }
  27. &__policy {
  28. position: absolute;
  29. bottom: 24px;
  30. width: 100%;
  31. }
  32. }