style: Remove hr separators, use CSS borders for compact spacing
TaxBaik CI/CD / build-and-deploy (push) Successful in 1m10s
TaxBaik CI/CD / build-and-deploy (push) Successful in 1m10s
Replace <hr class="my-0" /> with <div class="table-responsive" style="border-top: 1px solid var(--border-color-light);"> across all search+table pages (Blog, Clients, Inquiries). This eliminates the large gap created by hr element's default margin, achieving Tabler demo-level density. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -29,8 +29,7 @@
|
||||
</div>
|
||||
@if (Model.Items.Count > 0)
|
||||
{
|
||||
<hr class="my-0" />
|
||||
<div class="table-responsive">
|
||||
<div class="table-responsive" style="border-top: 1px solid var(--border-color-light);">
|
||||
<table class="table table-vcenter card-table table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
|
||||
@@ -42,8 +42,7 @@
|
||||
</div>
|
||||
@if (Model.Items.Count > 0)
|
||||
{
|
||||
<hr class="my-0" />
|
||||
<div class="table-responsive">
|
||||
<div class="table-responsive" style="border-top: 1px solid var(--border-color-light);">
|
||||
<table class="table table-vcenter card-table table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
|
||||
@@ -20,8 +20,7 @@
|
||||
</div>
|
||||
@if (Model.Items.Count > 0)
|
||||
{
|
||||
<hr class="my-0" />
|
||||
<div class="table-responsive">
|
||||
<div class="table-responsive" style="border-top: 1px solid var(--border-color-light);">
|
||||
<table class="table table-vcenter card-table table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
|
||||
Reference in New Issue
Block a user