Fix contrast in account verified text

The contrast value was 1.75, which makes the text hard to read and it
isn't even near to the minimum accessibility requirements.

We're using the `$color-success` variable since the `$check` color is
green and this one is green too.
This commit is contained in:
Javi Martín
2022-08-11 20:31:18 +02:00
parent 3938f4ff95
commit 6cc2003e1f

View File

@@ -3,11 +3,11 @@
.already-verified {
@include has-fa-icon(check, solid);
color: $check;
color: $color-success;
line-height: $line-height * 2;
&::before {
color: $text-medium;
color: $check;
font-size: 1.4em;
}
}