mirror of
https://github.com/tomfran/typo.git
synced 2025-04-26 13:39:55 +03:00

Optimized font loading by adding `font-display: swap`. Additionally, moved font-family values into CSS variables.
19 lines
186 B
CSS
19 lines
186 B
CSS
.flex {
|
|
display: flex;
|
|
}
|
|
|
|
.bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.italic {
|
|
font-style: italic;
|
|
}
|
|
|
|
.small {
|
|
font-size: medium;
|
|
}
|
|
|
|
.monospace {
|
|
font-family: var(--font-mono);
|
|
}
|