aboutsummaryrefslogtreecommitdiff
path: root/assets/_markdown.scss
diff options
context:
space:
mode:
Diffstat (limited to 'assets/_markdown.scss')
-rw-r--r--assets/_markdown.scss13
1 files changed, 13 insertions, 0 deletions
diff --git a/assets/_markdown.scss b/assets/_markdown.scss
index 3d54a0c..a6e5b9d 100644
--- a/assets/_markdown.scss
+++ b/assets/_markdown.scss
@@ -37,6 +37,9 @@
&:hover {
text-decoration: underline;
}
+ &:visited {
+ color: $color-visited-link;
+ }
}
img {
@@ -135,3 +138,13 @@
}
}
}
+
+.markdown-inner {
+ // Util class to remove extra margin in nested markdown content
+ > :first-child {
+ margin-top: 0;
+ }
+ > :last-child {
+ margin-bottom: 0;
+ }
+}