From 49fb3877790879d6d10397e69444b3ab037b75bb Mon Sep 17 00:00:00 2001 From: Paper Mountain Studio Date: Sat, 4 Jan 2020 13:52:40 +0100 Subject: [PATCH] fix telephone.html being recognized as tel: etc. --- src/parts/_typography.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/parts/_typography.css b/src/parts/_typography.css index 407ca7a..74f63d1 100644 --- a/src/parts/_typography.css +++ b/src/parts/_typography.css @@ -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; -} \ No newline at end of file +}