style: Remove gap between card-body and table-responsive
TaxBaik CI/CD / build-and-deploy (push) Successful in 1m25s

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 <noreply@anthropic.com>
This commit is contained in:
2026-07-09 22:12:25 +09:00
parent d94edc5a30
commit 16d74c1299
+10
View File
@@ -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;
}