fix stats spacing on mobile

This commit is contained in:
sentriz
2019-07-06 16:49:28 +01:00
parent 8239db3117
commit 1958450542
+6 -3
View File
@@ -15,11 +15,14 @@ body {
} }
} }
@media only screen and (min-width: 780px) { table td:first-child::after {
table#stats td:first-child::after,
table#recent-folders td:first-child::after {
content: " "; content: " ";
white-space: pre; white-space: pre;
}
@media only screen and (max-width: 780px) {
table#recent-folders td:first-child::after {
content: "";
} }
} }