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-09 04:21:28 +12:00 committed by GitHub
parent 955bb8dd7f
commit 772b9e3ba8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,6 +72,10 @@
a { a {
color: var(--body-text-color); color: var(--body-text-color);
} }
a.link {
box-shadow: unset;
}
} }
} }
} }