Skip to content

Commit ed54754

Browse files
committed
fix: ensure VT323 font properly applies to FOSSRadar.in logo
Fixed Tailwind CSS 4 font configuration conflicts: - Removed conflicting @theme font definitions from globals.css - Tailwind CSS 4 now uses fontFamily config from tailwind.config.ts - VT323 Google Font properly loaded via Next.js font optimization - Logo uses font-logo utility class mapped to VT323 Configuration: - Font import: VT323 weight 400 from Google Fonts - CSS variable: --font-vt323 - Tailwind class: font-logo - Applied to all FOSSRadar.in logos across homepage, radar, and project pages
1 parent bd0851b commit ed54754

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

app/globals.css

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,5 @@
11
@import "tailwindcss";
22

3-
@theme {
4-
--font-sans: var(--font-inter), system-ui, sans-serif;
5-
--font-logo: var(--font-vt323), monospace;
6-
--font-heading: var(--font-share-tech), sans-serif;
7-
8-
--color-background: #ffffff;
9-
--color-foreground: #0a0a0a;
10-
}
11-
123
:root {
134
--background: #ffffff;
145
--foreground: #0a0a0a;
@@ -21,12 +12,6 @@
2112
}
2213
}
2314

24-
body {
25-
color: var(--foreground);
26-
background: var(--background);
27-
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
28-
}
29-
3015
@utility text-balance {
3116
text-wrap: balance;
3217
}

0 commit comments

Comments
 (0)