From 16d74c129988df5283d2c42ee7c938865a503c91 Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Thu, 9 Jul 2026 22:12:25 +0900 Subject: [PATCH] style: Remove gap between card-body and table-responsive Add CSS rules to eliminate margin between card-body (form) and table-responsive (table) in card containers. Achieves compact spacing without whitespace gaps between search form and data table. Co-Authored-By: Claude Haiku 4.5 --- src/TaxBaik.Web/wwwroot/css/admin.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/TaxBaik.Web/wwwroot/css/admin.css b/src/TaxBaik.Web/wwwroot/css/admin.css index 6946e5c..f19c3f0 100644 --- a/src/TaxBaik.Web/wwwroot/css/admin.css +++ b/src/TaxBaik.Web/wwwroot/css/admin.css @@ -2126,3 +2126,13 @@ textarea:focus-visible { border-top: 1px solid var(--border-color-light); } +/* Remove gap between card-body and table-responsive */ +.card > .card-body { + margin-bottom: 0 !important; +} + +.card > .table-responsive { + margin-top: 0 !important; + border-top: none; +} +