mirror of
https://github.com/danog/sass-site.git
synced 2024-12-12 17:37:36 +01:00
25 lines
400 B
SCSS
25 lines
400 B
SCSS
|
.sl-l-container {
|
||
|
margin: {
|
||
|
right: auto;
|
||
|
left: auto;
|
||
|
};
|
||
|
padding: {
|
||
|
right: sl-px-to-rem(16px);
|
||
|
left: sl-px-to-rem(16px);
|
||
|
};
|
||
|
max-width: sl-px-to-rem(1920px);
|
||
|
|
||
|
@include sl-breakpoint--small {
|
||
|
padding: {
|
||
|
right: sl-px-to-rem(32px);
|
||
|
left: sl-px-to-rem(32px);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
&--small {
|
||
|
max-width: sl-px-to-rem(960px);
|
||
|
}
|
||
|
|
||
|
.sl-l-container { padding: 0; }
|
||
|
}
|