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
1 changed files with 4 additions and 4 deletions

View File

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