From 3c8a18258941f1cc7297fc7e3e123cdd189e02fd Mon Sep 17 00:00:00 2001 From: smthbh Date: Thu, 17 Apr 2025 18:46:42 -0400 Subject: [PATCH 1/2] set table max width --- static/css/character-skills.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/static/css/character-skills.css b/static/css/character-skills.css index 3cebe5c..4843607 100644 --- a/static/css/character-skills.css +++ b/static/css/character-skills.css @@ -67,7 +67,8 @@ } .skills-table { - width: 33%; /* Ensures all tables take up the full width of the container */ + max-width: 500px; /* Maximum width for the table */ + width: 100%; /* Allows the table to shrink responsively */ } .skills-table table { From bc18f02e1c930a7a4677647197a4c15c4bcca0ef Mon Sep 17 00:00:00 2001 From: smthbh Date: Thu, 17 Apr 2025 18:48:05 -0400 Subject: [PATCH 2/2] fix whitespace --- static/css/character-skills.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/css/character-skills.css b/static/css/character-skills.css index 4843607..ed37f5d 100644 --- a/static/css/character-skills.css +++ b/static/css/character-skills.css @@ -68,7 +68,7 @@ .skills-table { max-width: 500px; /* Maximum width for the table */ - width: 100%; /* Allows the table to shrink responsively */ + width: 100%; /* Allows the table to shrink responsively */ } .skills-table table {