From 356b2668a65548f3afd699fd9fdeecfdf7bcd44c Mon Sep 17 00:00:00 2001 From: Yannik Schmidt Date: Sun, 26 Nov 2023 18:36:34 +0100 Subject: [PATCH] fix: spacing & font-size on small displays --- static/site.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/static/site.css b/static/site.css index daf1c67..f049422 100644 --- a/static/site.css +++ b/static/site.css @@ -26,6 +26,17 @@ table{ border-color: transparent; } +@media screen and (max-width: 1000px){ + table{ + width:100%; + table-layout: fixed; + overflow-wrap: break-word; + } + td{ + font-size: 2.5vw; + } +} + .m-auto{ margin: auto; }