colors: move the visited property up the others
* Moves the visited pseudo-element property before the other pseudo-element properties, in order to allow the latters to overwrite the former. Co-Authored-by: iGor milhit <igor@milhit.ch>merge-requests/5/merge
parent
52a8e251f9
commit
07d9577e8c
|
@ -14,6 +14,10 @@ a {
|
|||
color: $frost-green;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: $frost-grey-blue;
|
||||
}
|
||||
|
||||
a:active,
|
||||
a:focus,
|
||||
.main-header a:active,
|
||||
|
@ -27,10 +31,6 @@ a:hover,
|
|||
color: $aurora-purple;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: $frost-grey-blue;
|
||||
}
|
||||
|
||||
.main-header,
|
||||
.main-header a,
|
||||
.main-footer,
|
||||
|
|
Loading…
Reference in New Issue