Skip to content

Commit 6d59312

Browse files
committed
Fix @theme block structure - add missing closing brace
The original @theme block was missing its closing brace before the light theme block was added, causing the light theme to be nested inside @theme.
1 parent bbda494 commit 6d59312

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/browser/styles/globals.css

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,9 @@
189189
/* Error backgrounds */
190190
--color-error-bg-dark: hsl(0 33% 13%); /* #3c1f1f - dark error bg */
191191

192+
/* Radius */
193+
--radius: 0.5rem;
194+
}
192195

193196
/* Light theme overrides using standard CSS selector */
194197
[data-theme="light"] {
@@ -366,10 +369,6 @@
366369
--radius: 0.5rem;
367370
}
368371

369-
/* Radius */
370-
--radius: 0.5rem;
371-
}
372-
373372
:root {
374373
/* Legacy RGB for special uses */
375374
--plan-mode-rgb: 31, 107, 184;

0 commit comments

Comments
 (0)