website/components/Section/Section.module.css

22 lines
294 B
CSS

.sectionWrapper {
position: relative;
display: flex;
padding: 180px 0;
}
.sectionWrapper.compact {
padding: 90px 0;
}
.sectionWrapper .content {
width: 100%;
max-width: var(--maxwidth);
margin: auto;
}
@media screen and (max-width: 840px) {
.sectionWrapper {
padding: 90px 0;
}
}