Update title in index.html, remove unused font imports in index.css, and configure build output in vite.config.ts; add favicon.svg

This commit is contained in:
2026-05-14 18:28:12 -05:00
parent 1998736c8b
commit bd1b932805
5 changed files with 22 additions and 7 deletions
+1 -4
View File
@@ -1,7 +1,6 @@
@import "tailwindcss";
@import "tw-animate-css";
@import "shadcn/tailwind.css";
@import "@fontsource-variable/inter";
@custom-variant dark (&:is(.dark *));
@@ -103,7 +102,6 @@
--radius-lg: var(--radius);
--radius-xl: calc(var(--radius) + 4px);
--font-heading: var(--font-sans);
--font-sans: 'Inter Variable', sans-serif;
--color-sidebar-ring: var(--sidebar-ring);
--color-sidebar-border: var(--sidebar-border);
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
@@ -133,7 +131,6 @@ html {
body {
@apply bg-background text-foreground antialiased;
margin: 0;
font-family: "Inter Variable", system-ui, sans-serif;
}
#root {
@@ -154,4 +151,4 @@ a {
html {
@apply font-sans;
}
}
}