From 1341a9c603ab48ee2ade3dc97e5f862e2c1cf9b3 Mon Sep 17 00:00:00 2001 From: Francisco de Brito Fontes Date: Mon, 30 Apr 2018 20:03:39 +0200 Subject: [PATCH] Adjust size of tables and only adjust the first column on mobile --- docs/extra.css | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/docs/extra.css b/docs/extra.css index 32e38b131..713e0f65a 100644 --- a/docs/extra.css +++ b/docs/extra.css @@ -1,3 +1,10 @@ -td:nth-child(1){ - white-space: nowrap; -} \ No newline at end of file +.md-typeset__table { + min-width: 100%; +} + +@media only screen and (min-width: 768px) +{ + td:nth-child(1){ + white-space: nowrap; + } +}