Skip to content

Commit 73c3afc

Browse files
Fix sticky header bleed
1 parent 0263f9a commit 73c3afc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

web/app/app.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@ a {
8181
justify-content: space-between;
8282
gap: 0.75rem;
8383
border: 1px solid rgba(220, 212, 199, 0.8);
84-
background: rgba(255, 255, 255, 0.74);
84+
background: rgba(255, 255, 255, 0.9);
8585
padding: 0.75rem 0.95rem;
8686
border-radius: 1.35rem;
87-
backdrop-filter: blur(16px);
87+
backdrop-filter: blur(18px);
8888
box-shadow: 0 18px 42px -30px rgba(15, 23, 42, 0.45);
8989
}
9090

web/app/root.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export default function App() {
5252
<div className="absolute inset-x-0 top-0 h-px bg-[linear-gradient(90deg,transparent,rgba(148,163,184,0.18),transparent)]" />
5353
</div>
5454

55-
<header className="top-bar relative z-10">
55+
<header className="top-bar relative z-40">
5656
<div className="top-bar-shell">
5757
<Link to="/" className="flex items-center gap-3">
5858
<div className="flex h-10 w-10 items-center justify-center rounded-2xl border border-amber-300/60 bg-amber-50 shadow-[0_12px_30px_-24px_rgba(180,130,38,0.8)]">
@@ -84,11 +84,11 @@ export default function App() {
8484
</div>
8585
</header>
8686

87-
<main id="main-content" className="content relative z-10">
87+
<main id="main-content" className="content relative">
8888
<Outlet />
8989
</main>
9090

91-
<footer className="relative z-10 mt-16 border-t border-[#dcd4c7] pt-8">
91+
<footer className="relative mt-16 border-t border-[#dcd4c7] pt-8">
9292
<div className="rounded-[1.75rem] border border-white/70 bg-white/80 p-6 shadow-[0_28px_80px_-52px_rgba(15,23,42,0.45)] backdrop-blur sm:p-7">
9393
<div className="flex flex-col gap-6 lg:flex-row lg:items-start lg:justify-between">
9494
<div className="flex items-center gap-3">

0 commit comments

Comments
 (0)