style: Fix CSS selector conflict for table-responsive margin
TaxBaik CI/CD / build-and-deploy (push) Successful in 1m2s

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 <noreply@anthropic.com>
This commit is contained in:
2026-07-09 22:16:58 +09:00
parent bc1373b6b8
commit 8812e7e5d2
+1 -2
View File
@@ -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;
}