mirror of
https://github.com/danog/sass-site.git
synced 2025-01-08 14:08:45 +01:00
21 lines
524 B
SCSS
21 lines
524 B
SCSS
.sl-l-section {
|
|
margin-bottom: var(--section-bottom-margin, var(--sl-gutter--triple));
|
|
margin-top: var(--section-top-margin, var(--sl-gutter--triple));
|
|
padding-bottom: var(--section-bottom-padding, var(--sl-gutter--triple));
|
|
padding-top: var(--section-top-padding, var(--sl-gutter--triple));
|
|
|
|
&:first-child,
|
|
&.sl-l-section--playground {
|
|
--section-top-margin: 0;
|
|
}
|
|
|
|
&:last-child {
|
|
--section-bottom-margin: 0;
|
|
}
|
|
|
|
.playground & {
|
|
--section-bottom-padding: 0;
|
|
--section-top-padding: 0;
|
|
}
|
|
}
|