style(ui): remove all border-radius for hard-edged containers app-wide
Set all Tailwind theme radius values (--radius-sm/md/lg/xl) to 0px and the base --radius CSS variable to 0. This makes every rounded-sm/md/lg/xl utility produce sharp corners across all components, cards, dialogs, buttons, and inputs. Avatar/badge circles (rounded-full) remain unaffected. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -36,14 +36,15 @@
|
|||||||
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
|
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
|
||||||
--color-sidebar-border: var(--sidebar-border);
|
--color-sidebar-border: var(--sidebar-border);
|
||||||
--color-sidebar-ring: var(--sidebar-ring);
|
--color-sidebar-ring: var(--sidebar-ring);
|
||||||
--radius-sm: calc(var(--radius) - 4px);
|
--radius-sm: 0px;
|
||||||
--radius-md: calc(var(--radius) - 2px);
|
--radius-md: 0px;
|
||||||
--radius-lg: var(--radius);
|
--radius-lg: 0px;
|
||||||
--radius-xl: calc(var(--radius) + 4px);
|
--radius-xl: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--radius: 0.625rem;
|
color-scheme: light;
|
||||||
|
--radius: 0;
|
||||||
--background: oklch(1 0 0);
|
--background: oklch(1 0 0);
|
||||||
--foreground: oklch(0.145 0 0);
|
--foreground: oklch(0.145 0 0);
|
||||||
--card: oklch(1 0 0);
|
--card: oklch(1 0 0);
|
||||||
|
|||||||
Reference in New Issue
Block a user