mirror of
https://github.com/Sped0n/bridget.git
synced 2026-04-17 11:39:29 -07:00
chore(font.scss): add font-face declaration for 'fw' font and set font-display property for better font loading performance chore(typography.scss): update font-family property for body element to use 'Geist' font as the primary font chore(typography.scss): update font-family property for button element to use 'fw' font as the primary font
14 lines
264 B
SCSS
14 lines
264 B
SCSS
@font-face {
|
|
font-family: 'Geist';
|
|
src: url('/lib/fonts/GeistVF.woff2') format('woff2');
|
|
font-weight: 90;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'fw';
|
|
src: url('/lib/fonts/fw.svg') format('svg');
|
|
font-display: swap;
|
|
}
|