From 4df112e7129b3c0c0a2a6ab79adbd47224258e99 Mon Sep 17 00:00:00 2001 From: Smittix Date: Wed, 18 Feb 2026 12:24:28 +0000 Subject: [PATCH] fix: Disclaimer warning icon overlapping heading text The .icon base class (global-nav.css) forces display:inline-flex and width/height of 18-20px, overriding the intended 48px size and causing the SVG to render inline inside the h2 rather than as a block above it. Override with display:block, explicit 48px dimensions, and auto margins so the icon renders centred above the DISCLAIMER heading. Co-Authored-By: Claude Sonnet 4.6 --- static/css/index.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/static/css/index.css b/static/css/index.css index 791a751..b6d3fc6 100644 --- a/static/css/index.css +++ b/static/css/index.css @@ -5209,8 +5209,11 @@ body::before { } .disclaimer-modal .warning-icon { - font-size: 48px; - margin-bottom: 15px; + display: block; + width: 48px; + height: 48px; + margin: 0 auto 15px; + color: var(--accent-red); } .disclaimer-modal p {