fix: enforce css overwrite for raw links (#77)

This commit is contained in:
Robert Kaussow 2021-02-24 16:38:18 +01:00 committed by GitHub
parent 798a2679c1
commit 5c15ade342
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,15 +54,15 @@
} }
&__link--raw { &__link--raw {
text-decoration: none; text-decoration: none !important;
color: $body-font-color; color: $body-font-color !important;
&:hover { &:hover {
text-decoration: none; text-decoration: none !important;
} }
&:visited { &:visited {
color: $body-font-color; color: $body-font-color !important;
} }
} }