mirror of
https://github.com/smittix/intercept.git
synced 2026-04-24 06:40:00 -07:00
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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user