From 958c0c021c285fa6714f77a62cbb546e36303c5c Mon Sep 17 00:00:00 2001 From: Sharyn Date: Fri, 20 Jul 2018 14:25:25 +0200 Subject: [PATCH] Adding orange underline to wordcloud links on mobile only --- components/wordCloud/style.scss | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/components/wordCloud/style.scss b/components/wordCloud/style.scss index 66b0d80..d8bf28b 100644 --- a/components/wordCloud/style.scss +++ b/components/wordCloud/style.scss @@ -137,6 +137,15 @@ > a { text-decoration: none; + @media (max-width: $toDesktop) { + @include hasRedUnderline; + position: relative; + + &::before { + background-color: $orange; + } + } + &:hover { text-decoration: underline; }