mirror of
https://github.com/danog/sass-site.git
synced 2024-12-13 09:57:35 +01:00
13 lines
287 B
SCSS
13 lines
287 B
SCSS
@use '../breakpoints';
|
|
|
|
// Use h2 sizes for condensed header
|
|
.sl-r-banner-playground h1 {
|
|
@include breakpoints.sl-breakpoint--medium {
|
|
--h1-size: var(--sl-font-size--xx-large);
|
|
}
|
|
|
|
@include breakpoints.sl-breakpoint--large {
|
|
--h1-size: var(--sl-font-size--xxx-large);
|
|
}
|
|
}
|