sass-site/source/assets/sass/layout/_holy-grail.scss
Jonny Gerig Meyer 2024442f31
lint
2023-01-12 14:54:24 -05:00

61 lines
1.1 KiB
SCSS

@use '../breakpoints';
@use '../functions';
@each $breakpoint, $size in breakpoints.$sl-breakpoints {
$prefix: if(($breakpoint == 'none'), '', '#{$breakpoint}-');
@include breakpoints.sl-breakpoint-set($breakpoint, $size) {
.sl-l-#{$prefix}holy-grail {
&,
&__body {
display: flex;
}
flex-direction: column;
height: 100%;
&__header,
&__footer {
flex: none;
}
&__body {
flex: 1 0 auto;
flex-direction: row;
margin: {
right: -2rem;
left: -2rem;
}
}
&__main,
&__navigation,
&__complementary {
padding: {
right: functions.sl-px-to-rem(32px);
left: functions.sl-px-to-rem(32px);
}
}
&__main {
flex: 1;
}
&__navigation {
flex: 0 0 functions.sl-px-to-rem(240px);
order: -1;
}
&__complementary {
order: 1;
flex: 0 0 functions.sl-px-to-rem(480px);
&--contents {
flex: 0 0 functions.sl-px-to-rem(240px);
order: -1;
}
}
}
}
}