Openstatus www.openstatus.dev

fix: theme select (#1521)

authored by

Maximilian Kaske and committed by
GitHub
e1254364 b2247098

+6 -2
+1 -1
apps/status-page/src/app/(public)/client.tsx
··· 107 107 </div> 108 108 </div> 109 109 <div className="flex gap-3"> 110 - <ThemeSelect className="min-w-[110px] max-w-[110px]" /> 110 + <ThemeSelect className="min-w-[125px] max-w-[125px]" /> 111 111 <Input 112 112 placeholder={`Search from ${THEME_KEYS.length} themes`} 113 113 value={q ?? ""}
+5 -1
apps/status-page/src/components/themes/theme-select.tsx
··· 28 28 }, []); 29 29 30 30 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 + ); 32 36 } 33 37 34 38 return (