Hide contribute on footer on small screens

This commit is contained in:
Chris Done 2014-05-29 11:31:44 +02:00
parent ddf22af839
commit 5cea828003
2 changed files with 4 additions and 1 deletions

View file

@ -195,7 +195,7 @@ footer r =
where
hlCopy = do span [class_ "item"]
"Copyright © 2014 haskell-lang.org"
span [class_ "item"]
span [class_ "item footer-contribute"]
(do "Got changes to contribute? "
a [href "https://github.com/chrisdone/hl"]
"Fork on Github" )

View file

@ -335,4 +335,7 @@ h2 {
.navbar {
display: none;
}
.footer-contribute {
display: none;
}
}