From 6229f77ae0f5c311ee239201b087db760b64f5bb Mon Sep 17 00:00:00 2001 From: xadyz1 Date: Sun, 26 Jul 2026 22:28:17 +0100 Subject: [PATCH] style: remove sticky page header and fix horizontal scroll on mobile --- frontend/css/main.css | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/frontend/css/main.css b/frontend/css/main.css index cca5021..4a8d7a8 100644 --- a/frontend/css/main.css +++ b/frontend/css/main.css @@ -340,6 +340,20 @@ h6, font-weight: 600; } +html, body { + margin: 0; + padding: 0; + background: var(--bg); + color: var(--text-primary); + font-family: 'Inter', system-ui, -apple-system, sans-serif; + min-height: 100vh; + display: flex; + font-size: 14px; + line-height: 1.5; + overflow-x: hidden; + max-width: 100vw; +} + .member-avatar--muted { background: var(--text-muted); } @@ -575,12 +589,7 @@ h6, align-items: center; justify-content: space-between; margin-bottom: 24px; - position: sticky; - top: 0; - z-index: 50; - background: rgba(17, 17, 19, 0.8); - backdrop-filter: blur(16px); - -webkit-backdrop-filter: blur(16px); + background: var(--bg); padding: 16px 32px; margin-left: -32px; margin-right: -32px;