From 1365d26ecffc8f71f2b6e34fc80359934fe9017c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fl=C3=A1vio=20Pereira?= Date: Wed, 18 Dec 2024 18:21:17 +0000 Subject: [PATCH] decent width for the table --- styles.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/styles.css b/styles.css index 20a5b85..cba2f67 100644 --- a/styles.css +++ b/styles.css @@ -33,8 +33,10 @@ a { } table { + table-layout: fixed; border-collapse: collapse; min-width: 600px; + width: 1000px; } th { @@ -77,6 +79,12 @@ th { #search-container { display: none; } } +@media only screen and (max-width: 600px) { + table { + width: 100%; + } +} + .component-group { break-inside: avoid; }