Skip to content

Commit 3ac0f34

Browse files
committed
fix: revert scroll behavior
1 parent 03f7171 commit 3ac0f34

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

site/src/modules/dashboard/DashboardLayout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ export const DashboardLayout: FC = () => {
2323
{canViewDeployment && <LicenseBanner />}
2424
<AnnouncementBanners />
2525

26-
<div className="flex flex-col h-screen">
26+
<div className="flex flex-col min-h-screen">
2727
<Navbar />
2828

29-
<div className="flex flex-col flex-1 min-h-0">
29+
<div className="flex flex-col flex-1 min-h-0 pb-12">
3030
<Suspense fallback={<Loader />}>
3131
<Outlet />
3232
</Suspense>

site/src/modules/dashboard/DeploymentBanner/DeploymentBannerView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export const DeploymentBannerView: FC<DeploymentBannerViewProps> = ({
107107
<div
108108
className="w-full"
109109
css={{
110-
position: "fixed",
110+
position: "sticky",
111111
lineHeight: 1,
112112
height: bannerHeight,
113113
bottom: 0,

0 commit comments

Comments
 (0)