From 8d713f1574e287f79d6f52decbee8ed7142e3078 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jacob=20M=C3=BCller?= Date: Fri, 23 Sep 2016 19:44:14 +0200 Subject: [PATCH] Use solid color and transition to red color on hover --- public/resources/css/module/_footer.scss | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/resources/css/module/_footer.scss b/public/resources/css/module/_footer.scss index 5bca0a6907..2842294f0e 100644 --- a/public/resources/css/module/_footer.scss +++ b/public/resources/css/module/_footer.scss @@ -89,9 +89,10 @@ } .styleguide-trigger { + color: $darkgrey; text-decoration: none; - opacity: .24; float: right; + transition: color .3s; @include respond-to('mobile') { display: block; @@ -100,6 +101,10 @@ float: none; } + &:hover { + color: $red-600; + } + .icon-favorite { line-height: 20px; }