From eceddcaf4f5d065806e39315564b2620fc7b357c Mon Sep 17 00:00:00 2001 From: Jean-Luc Makiola Date: Mon, 20 Apr 2026 17:25:09 +0200 Subject: [PATCH] fix(05): add explicit radius scale tokens for Tailwind v4 cascade Tailwind v4 does not derive --radius-xs through --radius-3xl from --radius. The named scale is independent, so Cards (rounded-xl), Buttons (rounded-md), etc. retained non-zero border-radius despite --radius: 0. Adding all scale tokens as 0 ensures complete sharp-corner cascade. Co-Authored-By: Claude Opus 4.6 --- src/index.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/index.css b/src/index.css index 1248af0..89c7be1 100644 --- a/src/index.css +++ b/src/index.css @@ -63,6 +63,13 @@ --color-investment-fill: oklch(0.68 0.22 285); --radius: 0; + --radius-xs: 0; + --radius-sm: 0; + --radius-md: 0; + --radius-lg: 0; + --radius-xl: 0; + --radius-2xl: 0; + --radius-3xl: 0; /* Collapsible animation */ --animate-collapsible-open: collapsible-open 200ms ease-out;