11 lines
147 B
SCSS
11 lines
147 B
SCSS
|
article {
|
||
|
margin: 0 auto;
|
||
|
max-width: 80rem;
|
||
|
}
|
||
|
|
||
|
@media screen and (max-width: #{$screen-tablet - 1}) {
|
||
|
article {
|
||
|
margin: 0 $gutter;
|
||
|
}
|
||
|
}
|