style: Remove hr separators, use CSS borders for compact spacing
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:
2026-07-09 22:03:56 +09:00
parent da085a7700
commit fd74240a72
3 changed files with 3 additions and 6 deletions
@@ -29,8 +29,7 @@
</div> </div>
@if (Model.Items.Count > 0) @if (Model.Items.Count > 0)
{ {
<hr class="my-0" /> <div class="table-responsive" style="border-top: 1px solid var(--border-color-light);">
<div class="table-responsive">
<table class="table table-vcenter card-table table-hover"> <table class="table table-vcenter card-table table-hover">
<thead> <thead>
<tr> <tr>
@@ -42,8 +42,7 @@
</div> </div>
@if (Model.Items.Count > 0) @if (Model.Items.Count > 0)
{ {
<hr class="my-0" /> <div class="table-responsive" style="border-top: 1px solid var(--border-color-light);">
<div class="table-responsive">
<table class="table table-vcenter card-table table-hover"> <table class="table table-vcenter card-table table-hover">
<thead> <thead>
<tr> <tr>
@@ -20,8 +20,7 @@
</div> </div>
@if (Model.Items.Count > 0) @if (Model.Items.Count > 0)
{ {
<hr class="my-0" /> <div class="table-responsive" style="border-top: 1px solid var(--border-color-light);">
<div class="table-responsive">
<table class="table table-vcenter card-table table-hover"> <table class="table table-vcenter card-table table-hover">
<thead> <thead>
<tr> <tr>