From e8d1515f8926c84464e6c9f999b4615adee6bd84 Mon Sep 17 00:00:00 2001 From: Ruslan Date: Tue, 12 May 2026 13:24:05 +0000 Subject: [PATCH] fix: reserve space for fixed page-logo, prevent content overlap --- app/static/style.css | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/app/static/style.css b/app/static/style.css index 7e3e6c4..ed83c28 100644 --- a/app/static/style.css +++ b/app/static/style.css @@ -46,11 +46,13 @@ body { left: 1.5rem; top: 4.5rem; z-index: 90; + width: 110px; } .page-logo { - height: clamp(2.5rem, 5vw, 3.5rem); - width: auto; + width: 100%; + height: auto; opacity: 0.9; + display: block; } .panel { background: var(--card); @@ -160,7 +162,7 @@ button { display: grid; grid-template-columns: 1fr; gap: 1rem; - padding: 1rem; + padding: 1rem 1rem 1rem 8rem; max-width: 1400px; width: 100%; box-sizing: border-box;