Add hover styling for danger chips

This commit is contained in:
2026-02-04 14:58:30 +01:00
parent a3284601ad
commit 47d7f0acf6

View File

@@ -351,12 +351,19 @@ p {
padding: 4px 8px; padding: 4px 8px;
border-radius: 999px; border-radius: 999px;
font-size: 12px; font-size: 12px;
border: 1px solid transparent;
cursor: pointer;
transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
} }
.chip.danger-chip { .chip.danger-chip {
background: #e0564f; background: #e0564f;
border: 1px solid #c54740; border: 1px solid #c54740;
color: #fffaf3; color: #fffaf3;
} }
.chip.danger-chip:hover {
background: #c9473f;
border-color: #a83a35;
}
.vote-controls { .vote-controls {
display: flex; display: flex;