We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b224709 commit e125436Copy full SHA for e125436
apps/status-page/src/app/(public)/client.tsx
@@ -107,7 +107,7 @@ export function Client() {
107
</div>
108
109
<div className="flex gap-3">
110
- <ThemeSelect className="min-w-[110px] max-w-[110px]" />
+ <ThemeSelect className="min-w-[125px] max-w-[125px]" />
111
<Input
112
placeholder={`Search from ${THEME_KEYS.length} themes`}
113
value={q ?? ""}
apps/status-page/src/components/themes/theme-select.tsx
@@ -28,7 +28,11 @@ export function ThemeSelect({
28
}, []);
29
30
if (!mounted) {
31
- return <Skeleton className="h-9 rounded-md border border-border" />;
+ return (
32
+ <Skeleton
33
+ className={cn("h-9 rounded-md border border-border", className)}
34
+ />
35
+ );
36
}
37
38
return (
0 commit comments