1
0
mirror of https://github.com/dani/vroom.git synced 2024-06-02 05:21:39 +02:00

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

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;
}
}