From 47d7f0acf622c3e30e0c445d38ff67259d5ad50e Mon Sep 17 00:00:00 2001 From: Frank Tovar Date: Wed, 4 Feb 2026 14:58:30 +0100 Subject: [PATCH] Add hover styling for danger chips --- wwwroot/styles.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/wwwroot/styles.css b/wwwroot/styles.css index 7e4c127..29c5976 100644 --- a/wwwroot/styles.css +++ b/wwwroot/styles.css @@ -351,12 +351,19 @@ p { padding: 4px 8px; border-radius: 999px; font-size: 12px; + border: 1px solid transparent; + cursor: pointer; + transition: background 150ms ease, border-color 150ms ease, color 150ms ease; } .chip.danger-chip { background: #e0564f; border: 1px solid #c54740; color: #fffaf3; } +.chip.danger-chip:hover { + background: #c9473f; + border-color: #a83a35; +} .vote-controls { display: flex;