ui(avbeat): industry-news card hover from near-black #1c1c1c → slate-200 #e2e8f0

src/styles/tailwind.css:195 .article-card:hover background-color was #1c1c1c (near-black, leftover from the dark theme). On the white page that made the card go black on hover and the text disappear into it. Swapped to #e2e8f0 (Tailwind slate-200) so the hover reads as a clean dark-gray distinct from the white surface while keeping the navy article title + slate excerpt fully readable.
This commit is contained in:
2026-06-03 21:40:34 +00:00
parent a5d4c50186
commit 2826f0b566

View File

@@ -192,7 +192,7 @@ body {
} }
.article-card:hover { .article-card:hover {
background-color: #1c1c1c; background-color: #e2e8f0;
} }
/* ===================== /* =====================