Reduce font size on smaller screens

should fix #2
This commit is contained in:
Daniel Berteaud 2014-04-18 15:03:24 +02:00
parent fcc303ebb2
commit 21b77c9bb9
1 changed files with 10 additions and 0 deletions

View File

@ -101,3 +101,13 @@
#chatMenu {
margin-bottom: 15px;
}
@media screen and (max-width: 480px) {
body {
font-size: 0.8em;
}
}
@media screen and (max-width: 768px) {
body {
font-size: 0.9em;
}
}