Make header sticky at top of viewport
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2026-05-16 18:06:17 +02:00
parent 92cb6a86e2
commit 638c7d524f
+5
View File
@@ -53,12 +53,17 @@ body::before {
/* ── Header ── */ /* ── Header ── */
header { header {
position: sticky;
top: 0;
z-index: 100;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
padding: 22px 0 18px; padding: 22px 0 18px;
background: var(--bg);
border-bottom: 1px solid var(--border); border-bottom: 1px solid var(--border);
margin-bottom: 28px; margin-bottom: 28px;
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
} }
.logo { display: flex; align-items: center; gap: 10px; } .logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { .logo-mark {