feat: load Outfit font from static files

This commit is contained in:
Kirill
2026-05-22 13:18:21 +05:00
parent 669b9aa45d
commit eb30640b49
14 changed files with 548 additions and 1831 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+30 -11
View File
@@ -1,13 +1,32 @@
:root {
color-scheme: light;
@font-face {
font-family: 'Outfit';
font-style: normal;
font-weight: 400;
src: url('/fonts/Outfit-Regular.woff2') format('woff2');
font-display: swap;
}
@font-face {
font-family: 'Outfit';
font-style: normal;
font-weight: 500;
src: url('/fonts/Outfit-Medium.woff2') format('woff2');
font-display: swap;
}
@font-face {
font-family: 'Outfit';
font-style: normal;
font-weight: 600;
src: url('/fonts/Outfit-SemiBold.woff2') format('woff2');
font-display: swap;
}
@font-face {
font-family: 'Outfit';
font-style: normal;
font-weight: 700;
src: url('/fonts/Outfit-Bold.woff2') format('woff2');
font-display: swap;
}
html,
body,
#root {
min-height: 100%;
}
body {
margin: 0;
}
:root { color-scheme: light; }
html, body, #root { min-height: 100%; }
body { margin: 0; }