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

21 lines
556 B
SCSS
Raw Normal View History

2023-01-06 22:40:29 +01:00
.sl-l-section {
2023-06-21 21:48:31 +02:00
margin-bottom: var(--sl-margin-bottom--section, var(--sl-gutter--triple));
margin-top: var(--sl-margin-top--section, var(--sl-gutter--triple));
padding-bottom: var(--sl-padding-bottom--section, var(--sl-gutter--triple));
padding-top: var(--sl-padding-top--section, var(--sl-gutter--triple));
2023-01-06 22:40:29 +01:00
2023-05-31 16:04:29 +02:00
&:first-child,
&.sl-l-section--playground {
2023-06-21 21:48:31 +02:00
--sl-margin-top--section: 0;
2023-01-09 20:10:02 +01:00
}
2023-01-06 22:40:29 +01:00
2023-01-09 20:10:02 +01:00
&:last-child {
2023-06-21 21:48:31 +02:00
--sl-margin-bottom--section: 0;
2023-01-09 20:10:02 +01:00
}
2023-06-16 22:17:26 +02:00
.playground & {
2023-06-21 21:48:31 +02:00
--sl-padding-bottom--section: 0;
--sl-padding-top--section: 0;
2023-06-16 22:17:26 +02:00
}
2023-01-06 22:40:29 +01:00
}