20 lines
232 B
CSS
20 lines
232 B
CSS
.module {
|
|
max-width: 1024px;
|
|
margin: 0 auto;
|
|
padding: 0 2vw;
|
|
|
|
@media (--breakpoint-desktop) {
|
|
padding: 0;
|
|
}
|
|
|
|
|
|
& img {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
& + .module {
|
|
margin-top: var(--grid-gutter);
|
|
}
|
|
}
|