_layout.scss 737 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. html {
  2. height: -webkit-fill-available;
  3. }
  4. body {
  5. font-family: $base-font-family;
  6. font-size: $base-font-size;
  7. color: $primary-color;
  8. display: flex;
  9. flex-direction: column;
  10. min-height: 100vh;
  11. min-height: -webkit-fill-available;
  12. }
  13. .main-wrapper {
  14. flex: 1;
  15. }
  16. .wrapper {
  17. max-width: 1304px;
  18. width: 100%;
  19. padding-left: 16px;
  20. padding-right: 16px;
  21. margin-left: auto;
  22. margin-right: auto;
  23. @include for-laptop-up {
  24. padding-left: 24px;
  25. padding-right: 24px;
  26. }
  27. }
  28. .disabled-scroll {
  29. overflow-y: hidden;
  30. }
  31. .visually-hidden:not(:focus):not(:active) {
  32. position: absolute;
  33. width: 1px;
  34. height: 1px;
  35. margin: -1px;
  36. border: 0;
  37. padding: 0;
  38. white-space: nowrap;
  39. clip-path: inset(100%);
  40. clip: rect(0 0 0 0);
  41. overflow: hidden;
  42. }