diff options
author | Alex Legler <alex@a3li.li> | 2015-02-13 16:16:20 +0100 |
---|---|---|
committer | Alex Legler <alex@a3li.li> | 2015-02-13 16:16:20 +0100 |
commit | e175491a4156cc6b5ef7bd78541f6618adb27017 (patch) | |
tree | f03262d4c5096ceffde856e3f0de09b3545c3878 | |
parent | navbar-grey: active item isn't bold anymore, don't color links (diff) | |
download | tyrian-theme-e175491a4156cc6b5ef7bd78541f6618adb27017.tar.gz tyrian-theme-e175491a4156cc6b5ef7bd78541f6618adb27017.tar.bz2 tyrian-theme-e175491a4156cc6b5ef7bd78541f6618adb27017.zip |
Fix footer icons on xs screens
-rw-r--r-- | index.html | 6 | ||||
-rw-r--r-- | sources/css/tyrian/less/footer.less | 9 |
2 files changed, 10 insertions, 5 deletions
@@ -269,14 +269,14 @@ </div> </div> <div class="row"> - <div class="col-xs-3 col-md-2"> + <div class="col-xs-2 col-sm-3 col-md-2"> <ul class="footerlinks three-icons"> <li><a href="http://twitter.com/gentoo" title="@Gentoo on Twitter"><span class="fa fa-twitter fa-fw"></span></a></li> <li><a href="https://plus.google.com/+Gentoo" title="+Gentoo on Google+"><span class="fa fa-google-plus fa-fw"></span></a></li> <li><a href="https://www.facebook.com/gentoo.org" title="Gentoo on Facebook"><span class="fa fa-facebook fa-fw"></span></a></li> </ul> </div> - <div class="col-xs-9 col-md-9"> + <div class="col-xs-10 col-sm-9 col-md-10"> <strong>© 2001–2015 Gentoo Foundation, Inc.</strong><br /> <small> Gentoo is a trademark of the Gentoo Foundation, Inc. @@ -293,4 +293,4 @@ <script src="assets/bootstrap.js"></script> <script src="assets/retina.min.js"></script> </body> -</html> +</html>
\ No newline at end of file diff --git a/sources/css/tyrian/less/footer.less b/sources/css/tyrian/less/footer.less index b324a81..5499e44 100644 --- a/sources/css/tyrian/less/footer.less +++ b/sources/css/tyrian/less/footer.less @@ -81,7 +81,12 @@ ul.footerlinks { } ul.three-icons li { - float: left; - width: 33%; text-align: center; +} + +@media (min-width: @screen-sm-min) { + ul.three-icons li { + float: left; + width: 33%; + } }
\ No newline at end of file |