Overwrite decline and accept buttons

This commit is contained in:
tijsklaren 2023-01-13 19:52:33 +01:00
parent d402bafd00
commit f2345ef650
1 changed files with 2 additions and 2 deletions

View File

@ -49,9 +49,9 @@ button, input[type='submit'], input[type='button'], .button{
/* Here we give the buttons a different background color */ /* Here we give the buttons a different background color */
/* For example when you use it as a decline or accept button */ /* For example when you use it as a decline or accept button */
.decline{ .decline{
background-color: var(--soft-red); background-color: var(--soft-red) !important;
} }
.accept{ .accept{
background-color: var(--soft-green); background-color: var(--soft-green) !important;
} }