From e1fde7fda19194448f1042b5d453e71fe7314d25 Mon Sep 17 00:00:00 2001 From: copernicus-mogley Date: Fri, 24 Jan 2020 14:52:34 +0100 Subject: [PATCH] Make table overflow-x scroll only on small viewports and not footnote tables at all --- css/style.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/css/style.css b/css/style.css index e2ebf793..a3a9aeb3 100644 --- a/css/style.css +++ b/css/style.css @@ -135,9 +135,14 @@ hr { table { border-collapse: collapse; + border: 0 none transparent; +} + +@media (max-width: 576px) { + table:not(.footnote) { display: block; overflow-x: scroll; - border: 0 none transparent; + } } th, td {