1
0
mirror of https://github.com/kognise/water.css.git synced 2025-08-18 19:02:05 +02:00

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: '💬 ';
}
@@ -79,4 +79,4 @@ mark {
border-radius: 2px;
padding: 0px 2px 0px 2px;
color: #000000;
}
}