We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7af0887 commit eff8cebCopy full SHA for eff8ceb
1 file changed
src/components/root-toggle.tsx
@@ -36,7 +36,7 @@ export function RootToggle({
36
37
const item = selected ? (
38
<>
39
- <div className="size-9 shrink-0 md:size-5">{selected.icon}</div>
+ <div className="size-5 shrink-0">{selected.icon}</div>
40
<div>
41
<p className="text-sm font-medium">{selected.title}</p>
42
<p className="text-[13px] text-fd-muted-foreground empty:hidden md:hidden">
@@ -78,9 +78,7 @@ export function RootToggle({
78
item.props?.className,
79
)}
80
>
81
- <div className="shrink-0 size-9 md:mt-1 md:mb-auto md:size-5">
82
- {item.icon}
83
- </div>
+ <div className="shrink-0 size-5">{item.icon}</div>
84
85
<p className="text-sm font-medium">{item.title}</p>
86
<p className="text-[13px] text-fd-muted-foreground empty:hidden">
0 commit comments