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;
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;