fix: Use direct color values for action buttons (--danger was undefined)

This commit is contained in:
Maciej Pienczyn 2026-01-11 15:56:46 +01:00
parent bf7cb6a76b
commit 9a527febf3

View File

@ -127,12 +127,12 @@
}
.action-btn.approve {
background: var(--success);
background: #28a745;
color: white;
}
.action-btn.reject {
background: var(--danger);
background: #dc3545;
color: white;
}