fix telephone.html being recognized as tel: etc.

This commit is contained in:
Paper Mountain Studio 2020-01-04 13:52:40 +01:00
parent 7c8261264f
commit 49fb387779

View file

@ -62,15 +62,15 @@ address {
font-style: normal;
}
a[href^='mailto']::before {
a[href^='mailto\:']::before {
content: '📧 ';
}
a[href^='tel']::before {
a[href^='tel\:']::before {
content: '📞 ';
}
a[href^='sms']::before {
a[href^='sms\:']::before {
content: '💬 ';
}