news screen enhancement - 1

This commit is contained in:
Kazuma
2026-06-09 20:11:10 -04:00
parent 5655cde6bf
commit f0c794f0c0
13 changed files with 250 additions and 35 deletions
+28
View File
@@ -76,3 +76,31 @@
margin-bottom: 16px;
font-size: var(--fs-md);
}
// ── Warning banner (data-sanity sentinel, P0.4) ───────────────────────────
.warn-banner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
background: var(--amber-dim);
border: 1px solid var(--amber);
border-radius: var(--radius-md);
color: var(--amber);
padding: 10px var(--space-lg);
margin-bottom: 16px;
font-size: var(--fs-md);
}
.warn-dismiss {
background: none;
border: none;
color: var(--amber);
cursor: pointer;
font-size: 14px;
padding: 2px 6px;
line-height: 1;
&:hover { filter: brightness(1.3); }
}