From 8812e7e5d259ff077702e998101b76008207f96e Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Thu, 9 Jul 2026 22:16:58 +0900 Subject: [PATCH] style: Fix CSS selector conflict for table-responsive margin Change from .card > .table-responsive to .card > .card-body + .table-responsive to avoid overriding border-top from .table-responsive--separator class. Ensures margin removal doesn't conflict with separator border styling. Co-Authored-By: Claude Haiku 4.5 --- src/TaxBaik.Web/wwwroot/css/admin.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/TaxBaik.Web/wwwroot/css/admin.css b/src/TaxBaik.Web/wwwroot/css/admin.css index f19c3f0..aa04259 100644 --- a/src/TaxBaik.Web/wwwroot/css/admin.css +++ b/src/TaxBaik.Web/wwwroot/css/admin.css @@ -2131,8 +2131,7 @@ textarea:focus-visible { margin-bottom: 0 !important; } -.card > .table-responsive { +.card > .card-body + .table-responsive { margin-top: 0 !important; - border-top: none; }