Skip to content

Commit

Permalink
fix: enforce css overwrite for raw links (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
xoxys authored Feb 24, 2021
1 parent 798a267 commit 5c15ade
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/sass/_markdown.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

Expand Down

0 comments on commit 5c15ade

Please sign in to comment.