sass-site/source/assets/sass/layout/_containers.scss

31 lines
520 B
SCSS
Raw Normal View History

2023-01-12 19:19:42 +01:00
@use "../breakpoints";
@use "../functions";
2023-01-06 22:40:29 +01:00
.sl-l-container {
margin: {
right: auto;
left: auto;
2023-01-09 20:10:02 +01:00
}
2023-01-06 22:40:29 +01:00
padding: {
2023-01-12 19:19:42 +01:00
right: functions.sl-px-to-rem(16px);
left: functions.sl-px-to-rem(16px);
2023-01-09 20:10:02 +01:00
}
2023-01-09 23:19:15 +01:00
2023-01-12 19:19:42 +01:00
max-width: functions.sl-px-to-rem(1920px);
2023-01-06 22:40:29 +01:00
2023-01-12 19:19:42 +01:00
@include breakpoints.sl-breakpoint--small {
2023-01-06 22:40:29 +01:00
padding: {
2023-01-12 19:19:42 +01:00
right: functions.sl-px-to-rem(32px);
left: functions.sl-px-to-rem(32px);
2023-01-09 20:10:02 +01:00
}
2023-01-06 22:40:29 +01:00
}
&--small {
2023-01-12 19:19:42 +01:00
max-width: functions.sl-px-to-rem(960px);
2023-01-06 22:40:29 +01:00
}
2023-01-09 20:10:02 +01:00
.sl-l-container {
padding: 0;
}
2023-01-06 22:40:29 +01:00
}