🐛 Fix invalid font used in login form on (web platform)

This commit is contained in:
2024-04-12 16:24:28 +02:00
parent fb4554aa71
commit 53fff64537
2 changed files with 20 additions and 0 deletions

View File

@@ -1,8 +1,24 @@
@font-face {
src: url("../fonts/Geist/Geist-Medium.woff2") format("woff2");
font-family: "Geist";
font-weight: normal;
}
@font-face {
src: url("../fonts/Geist/Geist-Bold.woff2") format("woff2");
font-family: "Geist";
font-weight: bold;
}
html, body {
height: 100%;
width: 100%;
margin: 0;
font-family: "Geist";
font-weight: normal;
}
#main {