client: show header link icon on mobile

This commit is contained in:
Max Leiter 2022-03-25 14:40:13 -07:00
parent 0815d43ee8
commit 945d3fbe63
No known key found for this signature in database
GPG key ID: A3512F2F2F17EBDA

View file

@ -110,3 +110,18 @@
max-width: 100%;
max-height: 350px;
}
@media screen and (max-width: 800px) {
.markdownPreview h1 a::after,
.markdownPreview h2 a::after,
.markdownPreview h3 a::after,
.markdownPreview h4 a::after,
.markdownPreview h5 a::after,
.markdownPreview h6 a::after {
content: "#";
font-size: 0.7em;
margin-left: 0.25em;
font-weight: normal;
filter: opacity(0.5);
}
}