From ecf9cffce76174aea6fdccebf2bf4b03ded6ae3c Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Wed, 8 May 2019 21:07:53 +0200 Subject: app: increase font size on tablet/desktop devices --- public/static/mobile.css | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'public/static') diff --git a/public/static/mobile.css b/public/static/mobile.css index d319c59..a0fe99e 100644 --- a/public/static/mobile.css +++ b/public/static/mobile.css @@ -4,8 +4,16 @@ div.app { margin-right: auto; } -div.app > ul > li { - font-size: 35%; +@media only screen and (max-width: 600px) { + div.app > ul > li { + font-size: 35%; + } +} + +@media only screen and (min-width: 600px) { + div.app > ul > li { + font-size: 40%; + } } div.app .moreinfo { -- cgit v1.2.3