mirror of
https://github.com/danog/sass-site.git
synced 2024-12-11 08:59:51 +01:00
31 lines
474 B
SCSS
31 lines
474 B
SCSS
@use '../breakpoints';
|
|
@use '../functions';
|
|
|
|
.sl-l-container {
|
|
margin: {
|
|
right: auto;
|
|
left: auto;
|
|
}
|
|
padding: {
|
|
right: var(--gutter);
|
|
left: var(--gutter);
|
|
}
|
|
|
|
max-width: functions.sl-px-to-rem(1920px);
|
|
|
|
@include breakpoints.sl-breakpoint--small {
|
|
padding: {
|
|
right: var(--gutter-double);
|
|
left: var(--gutter-double);
|
|
}
|
|
}
|
|
|
|
&--small {
|
|
max-width: functions.sl-px-to-rem(960px);
|
|
}
|
|
|
|
.sl-l-container {
|
|
padding: 0;
|
|
}
|
|
}
|