From 21b77c9bb92f75dbcd15368152531f0472c0eb0b Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Fri, 18 Apr 2014 15:03:24 +0200 Subject: [PATCH] Reduce font size on smaller screens should fix #2 --- public/css/vroom.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/public/css/vroom.css b/public/css/vroom.css index e60fb50..7c3d06f 100644 --- a/public/css/vroom.css +++ b/public/css/vroom.css @@ -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; + } +}