From 463729d3ef7970eacf4f593d22b1036a1342f22e Mon Sep 17 00:00:00 2001 From: Gregory Van Horne Date: Mon, 9 Sep 2024 16:22:38 -0700 Subject: [PATCH 1/2] Add right padding to th span element --- src/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/style.css b/src/style.css index 78bc877..b2b3a05 100644 --- a/src/style.css +++ b/src/style.css @@ -231,6 +231,7 @@ form.__ns__-table { display: inline-block; width: 0.5em; margin-left: -0.5em; + padding-right: 0.25em; } .__ns__-table td, From 08e68118ebdd5b277099d4db36968b0d4a5403d9 Mon Sep 17 00:00:00 2001 From: Gregory Van Horne Date: Tue, 10 Sep 2024 10:51:16 -0700 Subject: [PATCH 2/2] Remove padding, add flex and justify center --- src/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/style.css b/src/style.css index b2b3a05..07307de 100644 --- a/src/style.css +++ b/src/style.css @@ -228,10 +228,10 @@ form.__ns__-table { } .__ns__-table thead th span { - display: inline-block; + display: inline-flex; + justify-content: center; width: 0.5em; margin-left: -0.5em; - padding-right: 0.25em; } .__ns__-table td,