From 1958450542be73f1ce6dd1ed50b82df9706917ff Mon Sep 17 00:00:00 2001 From: sentriz Date: Sat, 6 Jul 2019 16:48:58 +0100 Subject: [PATCH] fix stats spacing on mobile --- server/assets/stylesheets/main.css | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/server/assets/stylesheets/main.css b/server/assets/stylesheets/main.css index 2bc64e4..302c1a1 100644 --- a/server/assets/stylesheets/main.css +++ b/server/assets/stylesheets/main.css @@ -15,11 +15,14 @@ body { } } -@media only screen and (min-width: 780px) { - table#stats td:first-child::after, +table td:first-child::after { + content: " "; + white-space: pre; +} + +@media only screen and (max-width: 780px) { table#recent-folders td:first-child::after { - content: " "; - white-space: pre; + content: ""; } }