From 18dba19b8efaa7009007bb5969d42fb2b14c1940 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jacob=20M=C3=BCller?= Date: Thu, 11 Aug 2016 23:15:50 +0200 Subject: [PATCH] Further improve styleguide trigger styles - Add some more space to the right on desktop - Remove `text-decoration` - Use correct `line-height` for the icon --- public/resources/css/module/_footer.scss | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/public/resources/css/module/_footer.scss b/public/resources/css/module/_footer.scss index 50ece15507..214ff89059 100644 --- a/public/resources/css/module/_footer.scss +++ b/public/resources/css/module/_footer.scss @@ -92,6 +92,8 @@ position: relative; .styleguide-trigger { + text-decoration: none; + margin-right: $unit * 2; opacity: .24; float: right; @@ -99,10 +101,15 @@ screen and (max-device-width: $phone-breakpoint), screen and (max-width: $tablet-breakpoint) { display: block; - margin-top: 8px; + margin-top: $unit; + margin-right: 0; font-size: 18px; float: none; } + + .icon-favorite { + line-height: 20px; + } } } }