_wrapper.scss 647 B

123456789101112131415161718192021222324252627282930
  1. .wrapper {
  2. width: 100%;
  3. max-width: 1220px;
  4. margin: auto;
  5. position: relative;
  6. display: -webkit-flex;
  7. display: -ms-flex;
  8. display: flex;
  9. flex-direction: column;
  10. &--header {
  11. flex-direction: row;
  12. justify-content: space-between;
  13. align-items: center;
  14. align-content: center;
  15. }
  16. &--content {
  17. flex-direction: row;
  18. @media screen and (max-width: 1220px) {
  19. padding: 0 15px;
  20. box-sizing: border-box;
  21. flex-direction: column;
  22. }
  23. }
  24. &--footer {
  25. flex-direction: row;
  26. justify-content: space-between;
  27. }
  28. }