Remove hyperlinks when printing

This commit is contained in:
Aiden Gall 2021-03-11 10:49:58 +00:00 committed by GitHub
parent 230c7078f1
commit 414f8bffa1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,3 +34,10 @@ img {
color: tomato ;
}
}
@media print {
a[href] {
text-decoration: none ;
color: black ;
}
}