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 568B

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