fix: ensure deployment banner is always on the bottom (#19361)

This commit is contained in:
Brett Kolodny
2025-08-14 15:35:42 -04:00
committed by GitHub
parent 9cde6e6608
commit 362c78a705
2 changed files with 3 additions and 2 deletions
@@ -23,10 +23,10 @@ export const DashboardLayout: FC = () => {
{canViewDeployment && <LicenseBanner />}
<AnnouncementBanners />
<div className="flex flex-col h-screen">
<div className="flex flex-col min-h-screen">
<Navbar />
<div className="flex flex-col flex-1 min-h-0">
<div className="flex flex-col flex-1 min-h-0 pb-12">
<Suspense fallback={<Loader />}>
<Outlet />
</Suspense>
@@ -105,6 +105,7 @@ export const DeploymentBannerView: FC<DeploymentBannerViewProps> = ({
return (
<div
className="w-full"
css={{
position: "sticky",
lineHeight: 1,