File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
features/mcp-servers/components/groups-manager Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,9 @@ export function Group(props: {
23
23
< div className = "flex min-w-0 items-center gap-2" >
24
24
< span
25
25
aria-hidden
26
- className = { `inline-block size-[7px] rounded-full
27
- ${ isEnabled ? 'bg-green-600' : 'bg-zinc-900/20' } ` }
26
+ className = { `inline-block size-[7px] shrink-0 rounded-full ${
27
+ isEnabled ? 'bg-green-600' : 'bg-zinc-900/20 dark:bg-zinc-200/50'
28
+ } `}
28
29
/>
29
30
< span className = "truncate" > { name } </ span >
30
31
</ div >
Original file line number Diff line number Diff line change 5
5
6
6
@source '../../node_modules/streamdown/dist/index.js' ;
7
7
8
- @custom-variant dark (& : is (.dark * ));
8
+ /* Ensure Tailwind's `dark:` variant targets when any ancestor has `.dark` */
9
+ @custom-variant dark (.dark & );
9
10
10
11
@theme inline {
11
12
--font-sans : 'Inter Variable' , sans-serif;
You can’t perform that action at this time.
0 commit comments