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;
+2 -2
View File
@@ -7,8 +7,8 @@
<SecondaryNavItem href="/">
<Icon icon="home-smile" /> Home
</SecondaryNavItem>
<SecondaryNavItem href="/friends">
<Icon icon="user-heart" /> Friends
<SecondaryNavItem href="/people">
<Icon icon="user-heart" /> People
</SecondaryNavItem>
<SecondaryNavItem href="/notes">
<Icon icon="clipboard-text" /> Saved Notes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+3 -1
View File
@@ -9,7 +9,9 @@ export default {
"nav-item": 2,
},
},
plugins: [require("daisyui")],
plugins: [
require("daisyui"),
],
daisyui: {
themes: [
"light",