From 644622f21ce7233a416762e37e34ac91de650b57 Mon Sep 17 00:00:00 2001 From: Luca Sacchi Ricciardi Date: Fri, 3 Apr 2026 16:12:07 +0200 Subject: [PATCH] fix: remove conflicting CSS legacy styles causing white-on-white text Critical bug fix (P0): Text appearing white-on-white and unreadable. Root Cause: - CSS legacy styles in index.css were setting global colors via :root variables - color-scheme: light dark was interfering with Tailwind classes - Global color: var(--text) and background: var(--bg) were overriding Tailwind - Dark mode media query was applying even when Tailwind expected light mode - Variables like --text-h were referenced but not properly initialized Fix: - Removed all legacy CSS variable definitions - Removed color-scheme declaration that interfered with Tailwind - Removed global color/background declarations - Simplified index.css to only import Tailwind and set minimal base styles - Let Tailwind utility classes handle all colors completely Result: - Text now renders with correct Tailwind colors (text-slate-900, text-indigo-700, etc.) - Badge with 'Sprint 2 Completato' now visible with indigo background - Headline 'Il DevOps tascabile...' now renders in dark slate - Build successful: 28KB CSS bundle with all utilities Safety First: - Verified build passes - No breaking changes to component structure - Tailwind classes now have full control over styling - Minimal base styles preserved for font-smoothing Refs: Tailwind v4 CSS-first configuration --- frontend/src/index.css | 112 +++-------------------------------------- 1 file changed, 6 insertions(+), 106 deletions(-) diff --git a/frontend/src/index.css b/frontend/src/index.css index c4b94ee..68099c3 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -1,113 +1,13 @@ @import "tailwindcss"; -:root { - --text: #6b6375; - --text-h: #08060d; - --bg: #fff; - --border: #e5e4e7; - --code-bg: #f4f3ec; - --accent: #aa3bff; - --accent-bg: rgba(170, 59, 255, 0.1); - --accent-border: rgba(170, 59, 255, 0.5); - --social-bg: rgba(244, 243, 236, 0.5); - --shadow: - rgba(0, 0, 0, 0.1) 0 10px 15px -3px, rgba(0, 0, 0, 0.05) 0 4px 6px -2px; - - --sans: system-ui, 'Segoe UI', Roboto, sans-serif; - --heading: system-ui, 'Segoe UI', Roboto, sans-serif; - --mono: ui-monospace, Consolas, monospace; - - font: 18px/145% var(--sans); - letter-spacing: 0.18px; - color-scheme: light dark; - color: var(--text); - background: var(--bg); - font-synthesis: none; - text-rendering: optimizeLegibility; +/* Base styles - let Tailwind handle everything */ +body { + font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; - - @media (max-width: 1024px) { - font-size: 16px; - } -} - -@media (prefers-color-scheme: dark) { - :root { - --text: #9ca3af; - --text-h: #f3f4f6; - --bg: #16171d; - --border: #2e303a; - --code-bg: #1f2028; - --accent: #c084fc; - --accent-bg: rgba(192, 132, 252, 0.15); - --accent-border: rgba(192, 132, 252, 0.5); - --social-bg: rgba(47, 48, 58, 0.5); - --shadow: - rgba(0, 0, 0, 0.4) 0 10px 15px -3px, rgba(0, 0, 0, 0.25) 0 4px 6px -2px; - } - - #social .button-icon { - filter: invert(1) brightness(2); - } + margin: 0; } #root { - width: 1126px; - max-width: 100%; - margin: 0 auto; - text-align: center; - border-inline: 1px solid var(--border); - min-height: 100svh; - display: flex; - flex-direction: column; - box-sizing: border-box; -} - -body { - margin: 0; -} - -h1, -h2 { - font-family: var(--heading); - font-weight: 500; - color: var(--text-h); -} - -h1 { - font-size: 56px; - letter-spacing: -1.68px; - margin: 32px 0; - @media (max-width: 1024px) { - font-size: 36px; - margin: 20px 0; - } -} -h2 { - font-size: 24px; - line-height: 118%; - letter-spacing: -0.24px; - margin: 0 0 8px; - @media (max-width: 1024px) { - font-size: 20px; - } -} -p { - margin: 0; -} - -code, -.counter { - font-family: var(--mono); - display: inline-flex; - border-radius: 4px; - color: var(--text-h); -} - -code { - font-size: 15px; - line-height: 135%; - padding: 4px 8px; - background: var(--code-bg); -} + min-height: 100vh; +} \ No newline at end of file