This commit is contained in:
Ludovic Stephan 2020-08-24 16:35:59 +02:00 committed by Martin Pépin
parent 40839458a5
commit 55c69ae42b
No known key found for this signature in database
GPG key ID: E7520278B1774448
3 changed files with 21 additions and 2 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -123,6 +123,16 @@ input[type="submit"] {
}
}
.button.is-primary {
background-color: $button_color;
color: findColorInvert($button_color);
&:hover {
background-color: $primary_color;
color: findColorInvert($primary_color);
}
}
/* --- Message styling --- */
.notification {
@ -131,3 +141,12 @@ input[type="submit"] {
text-align: center;
}
/* --- Modals --- */
.modal-card-head {
background-color: $primary_color;
.modal-card-title {
color: findColorInvert($primary_color);
}
}