fix(article): regression in article copyright link box-shadow (#611)

Somewhere between hugo 0.88.1 and 0.98.0, box-shadow got applied
to the article copyright, which is an ugly regression.
This commit is contained in:
Simon Guest
2022-06-08 18:21:28 +02:00
committed by GitHub
parent 955bb8dd7f
commit 772b9e3ba8
+4
View File
@@ -72,6 +72,10 @@
a {
color: var(--body-text-color);
}
a.link {
box-shadow: unset;
}
}
}
}