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 <noreply@anthropic.com>
This commit is contained in:
Smittix
2026-02-18 12:24:28 +00:00
parent 3d8b8bbfdc
commit 4df112e712

View File

@@ -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 {