mirror of
https://github.com/danog/sass-site.git
synced 2024-12-04 10:28:22 +01:00
21 lines
556 B
SCSS
21 lines
556 B
SCSS
.sl-l-section {
|
|
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));
|
|
|
|
&:first-child,
|
|
&.sl-l-section--playground {
|
|
--sl-margin-top--section: 0;
|
|
}
|
|
|
|
&:last-child {
|
|
--sl-margin-bottom--section: 0;
|
|
}
|
|
|
|
.playground & {
|
|
--sl-padding-bottom--section: 0;
|
|
--sl-padding-top--section: 0;
|
|
}
|
|
}
|