Add lato font

This commit is contained in:
Jon Staab
2024-08-06 13:04:13 -07:00
parent 4172b2d91f
commit 0340634ecb
10 changed files with 45 additions and 3 deletions
+40
View File
@@ -2,6 +2,46 @@
@tailwind components;
@tailwind utilities;
@font-face {
font-family: "Satoshis";
font-style: normal;
font-weight: 400;
src:
local(""),
url("/fonts/Satoshi Symbol.ttf") format("truetype");
}
@font-face {
font-family: "Lato";
font-style: normal;
font-weight: 400;
src:
local(""),
url("/fonts/Lato-Regular.ttf") format("truetype");
}
@font-face {
font-family: "Lato";
font-style: bold;
font-weight: 600;
src:
local(""),
url("/fonts/Lato-Bold.ttf") format("truetype");
}
@font-face {
font-family: "Lato";
font-style: italic;
font-weight: 400;
src:
local(""),
url("/fonts/Italic.ttf") format("truetype");
}
:root {
font-family: Lato;
}
.button {
padding: 12px 16px;
display: flex;