Openstatus www.openstatus.dev
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: status page ui regression (#1550)

authored by

Maximilian Kaske and committed by
GitHub
58f20d30 9e1be93e

+7 -1
+6 -1
apps/status-page/src/components/nav/header.tsx
··· 92 92 {/* NOTE: same width as the `StatusUpdates` button */} 93 93 <div className="flex w-[150px] shrink-0"> 94 94 <div className="flex items-center justify-center"> 95 - <Button variant="outline" size="icon" className="size-8" asChild> 95 + <Button 96 + variant="outline" 97 + size="icon" 98 + className="size-8 overflow-hidden" 99 + asChild 100 + > 96 101 <Link 97 102 href={page?.homepageUrl || "/"} 98 103 target={page?.homepageUrl ? "_blank" : undefined}
+1
apps/status-page/src/components/status-page/status-tracker.tsx
··· 232 232 <div 233 233 className={cn( 234 234 "group relative mx-px flex h-full w-full cursor-pointer flex-col rounded-full outline-none first:ml-0 last:mr-0 hover:opacity-80 focus-visible:opacity-80 focus-visible:ring-[2px] focus-visible:ring-ring/50 data-[aria-pressed=true]:opacity-80", 235 + "rounded-full overflow-hidden", 235 236 )} 236 237 onClick={() => handleBarClick(index)} 237 238 onFocus={() => handleBarFocus(index)}