diff --git a/public/_includes/_footer.jade b/public/_includes/_footer.jade
index 7f77d739f3..a186b59ca8 100644
--- a/public/_includes/_footer.jade
+++ b/public/_includes/_footer.jade
@@ -53,5 +53,5 @@ else
footer(class="background-steel")
small.text-caption Powered by Google ©2010-2016. Code licensed under an MIT-style License. Documentation licensed under CC BY 4.0.
- a(aria-label="View Style Guide" href=styleguide title="Style Guide" class="styleguide-trigger text-snow" md-button)
+ a(aria-label="View Style Guide" href=styleguide title="Style Guide" class="styleguide-trigger text-snow")
span.icon-favorite
diff --git a/public/resources/css/module/_footer.scss b/public/resources/css/module/_footer.scss
index d0376f476c..50ece15507 100644
--- a/public/resources/css/module/_footer.scss
+++ b/public/resources/css/module/_footer.scss
@@ -92,13 +92,17 @@
position: relative;
.styleguide-trigger {
- position: absolute;
- top: $unit * 2;
- right: $unit * 2;
- font-size: 14px;
- line-height: 20px;
- padding: 0px $unit;
opacity: .24;
+ float: right;
+
+ @media handheld and (max-width: $phone-breakpoint),
+ screen and (max-device-width: $phone-breakpoint),
+ screen and (max-width: $tablet-breakpoint) {
+ display: block;
+ margin-top: 8px;
+ font-size: 18px;
+ float: none;
+ }
}
}
-}
\ No newline at end of file
+}