Correction des couleurs sur les boutons

This commit is contained in:
Damien Broqua 2022-03-14 16:27:50 +01:00
parent 9e7743e16d
commit 7578d9b63f
3 changed files with 20 additions and 8 deletions

View file

@ -54,7 +54,7 @@
&.is-link {
background-color: transparent;
border-color: $nord9;
color: $nord9;
color: var(--button-link-text-color);
&:hover {
border-color: darken($nord9, $hoverAmount);

View file

@ -29,7 +29,7 @@ $danger-color-hl: darken($danger-color, $hoverAmount);
$warning-color-hl: darken($warning-color, $hoverAmount);
$success-color-hl: darken($success-color, $hoverAmount);
$button-font-color: $nord1;
$button-font-color: #2C364A;
$button-alternate-color: #01103C;
$pagination-border-color: $nord3;
@ -54,6 +54,8 @@ $pagination-hover-color: rgb(115, 151, 186);
--border-color: #{$nord4};
--button-link-text-color: #2C364A;
--nord0: #{$nord0};
--nord1: #{$nord1};
--nord2: #{$nord2};
@ -90,4 +92,6 @@ $pagination-hover-color: rgb(115, 151, 186);
--box-shadow-color: #{rgba($nord4, 0.2)};
--border-color: #{$nord1};
--button-link-text-color: #{$white};
}