diff --git a/public/assets/css/front/index.css b/public/assets/css/front/index.css index b7389b9..2d790ef 100644 --- a/public/assets/css/front/index.css +++ b/public/assets/css/front/index.css @@ -53,20 +53,29 @@ section.index-meta article { margin-top: 20px; } -div.index-meta { - display: grid; - grid-template-columns: 50% 50%; - gap: 10px; - width: 98%; - font-weight: 500; - color: var(--secondary); +table.index-meta { + width: 100%; + border-collapse: collapse; + border-spacing: 0; } -div.index-meta > label:nth-child(2), -div.index-meta > label:nth-child(4), -div.index-meta > label:nth-child(6) { +table.index-meta tr + tr > * { + padding-block-start: 10px; +} + +table.index-meta :is(th, td) { + padding: 0; + font-weight: 500; +} + +table.index-meta th { + color: var(--secondary); + text-align: left; +} + +table.index-meta td { + padding-inline-start: 10px; color: var(--white); - width: 100%; text-align: right; } diff --git a/resources/views/front/index.blade.php b/resources/views/front/index.blade.php index ce74730..e68b58e 100644 --- a/resources/views/front/index.blade.php +++ b/resources/views/front/index.blade.php @@ -38,14 +38,21 @@ @endisset
-
- - - - - - -
+ + + + + + + + + + + + + + +
Meta
Active Locations Tracked{{$count}}
Total Sources{{$sources}}
Latest Update{{$latest_date}}
@endsection \ No newline at end of file