Skip to content

Commit e125436

Browse files
authored
fix: theme select (#1521)
1 parent b224709 commit e125436

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

apps/status-page/src/app/(public)/client.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export function Client() {
107107
</div>
108108
</div>
109109
<div className="flex gap-3">
110-
<ThemeSelect className="min-w-[110px] max-w-[110px]" />
110+
<ThemeSelect className="min-w-[125px] max-w-[125px]" />
111111
<Input
112112
placeholder={`Search from ${THEME_KEYS.length} themes`}
113113
value={q ?? ""}

apps/status-page/src/components/themes/theme-select.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@ export function ThemeSelect({
2828
}, []);
2929

3030
if (!mounted) {
31-
return <Skeleton className="h-9 rounded-md border border-border" />;
31+
return (
32+
<Skeleton
33+
className={cn("h-9 rounded-md border border-border", className)}
34+
/>
35+
);
3236
}
3337

3438
return (

0 commit comments

Comments
 (0)