mirror of
https://koodu.h-i.works/projects/thebadspace
synced 2025-05-06 14:41:02 -05:00
CSS fix for spacing issues in listing page
th spacing between location links on the listings UI was a bit funky to made a quick tweak to smooth that out.
This commit is contained in:
parent
1f09850a6a
commit
8e9ce4dd45
@ -95,7 +95,7 @@ a.list-link > .item-block > .item-icon {
|
||||
a.list-link {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
|
||||
grid-template-rows: 100% 100px 30px 30px;
|
||||
grid-template-rows: 1fr auto 30px 30px;
|
||||
gap: 5px;
|
||||
height: auto;
|
||||
padding-bottom: 20px;
|
||||
|
@ -90,7 +90,7 @@
|
||||
</main>
|
||||
<footer>
|
||||
<div>
|
||||
The Bad Space © 2024<br />
|
||||
The Bad Space © <?php echo date("Y"); ?><br />
|
||||
an <a href="https://h-i.works">h.i.</a> project
|
||||
</div>
|
||||
<div>
|
||||
|
@ -7,7 +7,7 @@
|
||||
<h2>Page {{$pageNum}}</h2>
|
||||
<a href="/listings/{{$prev}}">PREV</a>
|
||||
{{$pageNum}} of {{$totalPages}}
|
||||
<a href="/listings/{{$next}}">NEXT</a><br /><br />
|
||||
<a href="/listings/{{$next}}">NEXT</a>
|
||||
@foreach($locations as $location)
|
||||
@php
|
||||
$action = $location->block_count + $location->silence_count;
|
||||
@ -26,10 +26,10 @@
|
||||
</div>
|
||||
</a>
|
||||
@endforeach
|
||||
<br />
|
||||
<a href="/listings/{{$prev}}">PREV</a>
|
||||
{{$pageNum}} of {{$totalPages}}
|
||||
<a href="/listings/{{$next}}">NEXT</a>
|
||||
<br /><br />
|
||||
</article>
|
||||
</section>
|
||||
@endsection
|
Loading…
x
Reference in New Issue
Block a user