Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thegeeklab/hugo-geekdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Kaussow <mail@geeklabor.de>2021-02-24 18:38:18 +0300
committerGitHub <noreply@github.com>2021-02-24 18:38:18 +0300
commit5c15ade3421f55908e306b661fd23f399cdb55c2 (patch)
treed9dc9c921c250dd3a0546c733fc4296488e19714
parent798a2679c110d783bceccc7c9d9284b1ba334dea (diff)
fix: enforce css overwrite for raw links (#77)v0.9.5
-rw-r--r--src/sass/_markdown.scss8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sass/_markdown.scss b/src/sass/_markdown.scss
index 816dea1..6612158 100644
--- a/src/sass/_markdown.scss
+++ b/src/sass/_markdown.scss
@@ -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;
}
}