Adding orange underline to wordcloud links on mobile only

This commit is contained in:
Sharyn 2018-07-20 14:25:25 +02:00
parent 0727d288ce
commit 958c0c021c
1 changed files with 9 additions and 0 deletions

View File

@ -137,6 +137,15 @@
> a { > a {
text-decoration: none; text-decoration: none;
@media (max-width: $toDesktop) {
@include hasRedUnderline;
position: relative;
&::before {
background-color: $orange;
}
}
&:hover { &:hover {
text-decoration: underline; text-decoration: underline;
} }