From 3475c1b35d9ef6a6470510b7e34041a92142a988 Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Tue, 1 Sep 2026 16:34:49 +0100 Subject: [PATCH] Add padding to table cells in App.css for improved layout consistency --- assets/stylesheets/App.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/assets/stylesheets/App.css b/assets/stylesheets/App.css index f5e700d9..523602c8 100644 --- a/assets/stylesheets/App.css +++ b/assets/stylesheets/App.css @@ -2306,3 +2306,12 @@ span.ant-skeleton-input.ant-skeleton-input-sm.text-skeleton { font-size: 18px; color: var(--color-primary); } + +.ant-table-wrapper .ant-table-cell, +.ant-table-wrapper .ant-table-thead > tr > th, +.ant-table-wrapper .ant-table-tbody > tr > th, +.ant-table-wrapper .ant-table-tbody > tr > td, +.ant-table-wrapper tfoot > tr > th, +.ant-table-wrapper tfoot > tr > td { + padding: 12px 8px; +}