sass-site/source/assets/sass/components/_introduction.scss

16 lines
308 B
SCSS
Raw Normal View History

2023-01-12 20:54:24 +01:00
@use '../breakpoints';
@use '../visual-design/typography';
2023-01-12 19:19:42 +01:00
2023-01-06 22:40:29 +01:00
.sl-c-introduction {
color: var(--sl-color--patina);
2023-01-12 19:19:42 +01:00
font-weight: typography.$sl-font-weight--light;
2023-01-06 22:40:29 +01:00
2023-01-12 19:19:42 +01:00
@include breakpoints.sl-breakpoint--medium {
font-size: var(--sl-font-size--xx-large);
2023-01-09 20:10:02 +01:00
}
2023-01-06 22:40:29 +01:00
2023-01-09 20:10:02 +01:00
&--center {
text-align: center;
}
2023-01-06 22:40:29 +01:00
}