sass-site/source/assets/sass/layout/_holy-grail.scss

56 lines
1.1 KiB
SCSS
Raw Normal View History

2023-01-12 20:54:24 +01:00
@use '../breakpoints';
2023-01-12 19:19:42 +01:00
@each $breakpoint, $size in breakpoints.$sl-breakpoints {
2023-01-06 22:40:29 +01:00
$prefix: if(($breakpoint == 'none'), '', '#{$breakpoint}-');
2023-01-12 19:19:42 +01:00
@include breakpoints.sl-breakpoint-set($breakpoint, $size) {
2023-01-06 22:40:29 +01:00
.sl-l-#{$prefix}holy-grail {
&,
2023-01-09 20:10:02 +01:00
&__body {
display: flex;
}
2023-01-06 22:40:29 +01:00
flex-direction: column;
height: 100%;
&__header,
2023-01-09 20:10:02 +01:00
&__footer {
flex: none;
}
2023-01-06 22:40:29 +01:00
&__body {
flex: 1 0 auto;
flex-direction: row;
2023-03-24 03:30:45 +01:00
margin-left: var(--sl-gutter--double-negative);
margin-right: var(--sl-gutter--double-negative);
2023-01-06 22:40:29 +01:00
}
&__main,
&__navigation,
&__complementary {
2023-03-24 03:30:45 +01:00
padding-left: var(--sl-gutter--double);
padding-right: var(--sl-gutter--double);
2023-01-06 22:40:29 +01:00
}
2023-01-09 20:10:02 +01:00
&__main {
flex: 1;
}
2023-01-06 22:40:29 +01:00
&__navigation {
flex: 0 0 var(--sl-column--small);
2023-01-06 22:40:29 +01:00
order: -1;
}
&__complementary {
order: 1;
flex: 0 0 var(--sl-column--medium);
2023-01-06 22:40:29 +01:00
&--contents {
flex: 0 0 var(--sl-column--small);
2023-01-06 22:40:29 +01:00
order: -1;
}
}
}
}
}