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 where
hlCopy = do span [class_ "item"] hlCopy = do span [class_ "item"]
"Copyright © 2014 haskell-lang.org" "Copyright © 2014 haskell-lang.org"
span [class_ "item"] span [class_ "item footer-contribute"]
(do "Got changes to contribute? " (do "Got changes to contribute? "
a [href "https://github.com/chrisdone/hl"] a [href "https://github.com/chrisdone/hl"]
"Fork on Github" ) "Fork on Github" )

View file

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