10 lines
237 B
SCSS
10 lines
237 B
SCSS
@use 'variables' as *;
|
|
|
|
// Global typography defaults — headings can be extended in components
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: var(--font-display, $font-display);
|
|
font-weight: 600;
|
|
line-height: 1.2;
|
|
color: var(--text);
|
|
}
|