Restrict visited link color to markdown only

This commit is contained in:
Alex Shpak
2020-04-06 11:26:35 +02:00
parent 1eeabcad67
commit 6234f12654
5 changed files with 111 additions and 110 deletions
+13
View File
@@ -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;
}
}