1
0
mirror of https://github.com/kognise/water.css.git synced 2025-08-13 00:24:31 +02:00

Merge pull request #166 from PaperMountainStudio/master

fix telephone.html being recognized as tel: etc.
This commit is contained in:
Kognise
2020-01-30 13:17:29 -05:00
committed by GitHub

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;
}
}