fix(toast): unreadable buttons on light theme

This commit is contained in:
Elian Doran 2025-12-23 23:06:29 +02:00
parent 1185d4b10b
commit 4e5c97d548
No known key found for this signature in database

View File

@ -54,6 +54,16 @@
display: flex;
gap: 1em;
justify-content: space-between;
.btn {
color: var(--bs-toast-color);
background: var(--modal-control-button-background);
&:hover {
background: var(--modal-control-button-hover-background);
color: var(--bs-toast-color);
}
}
}
.toast-progress {