1
0
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:
ro 2025-04-16 18:23:11 -06:00
parent 1f09850a6a
commit 8e9ce4dd45
3 changed files with 120 additions and 120 deletions

View File

@ -95,7 +95,7 @@ a.list-link > .item-block > .item-icon {
a.list-link { a.list-link {
display: grid; display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
grid-template-rows: 100% 100px 30px 30px; grid-template-rows: 1fr auto 30px 30px;
gap: 5px; gap: 5px;
height: auto; height: auto;
padding-bottom: 20px; padding-bottom: 20px;

View File

@ -90,7 +90,7 @@
</main> </main>
<footer> <footer>
<div> <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 an <a href="https://h-i.works">h.i.</a> project
</div> </div>
<div> <div>

View File

@ -7,7 +7,7 @@
<h2>Page {{$pageNum}}</h2> <h2>Page {{$pageNum}}</h2>
<a href="/listings/{{$prev}}">PREV</a> <a href="/listings/{{$prev}}">PREV</a>
{{$pageNum}} of {{$totalPages}} {{$pageNum}} of {{$totalPages}}
<a href="/listings/{{$next}}">NEXT</a><br /><br /> <a href="/listings/{{$next}}">NEXT</a>
@foreach($locations as $location) @foreach($locations as $location)
@php @php
$action = $location->block_count + $location->silence_count; $action = $location->block_count + $location->silence_count;
@ -26,10 +26,10 @@
</div> </div>
</a> </a>
@endforeach @endforeach
<br />
<a href="/listings/{{$prev}}">PREV</a> <a href="/listings/{{$prev}}">PREV</a>
{{$pageNum}} of {{$totalPages}} {{$pageNum}} of {{$totalPages}}
<a href="/listings/{{$next}}">NEXT</a> <a href="/listings/{{$next}}">NEXT</a>
<br /><br />
</article> </article>
</section> </section>
@endsection @endsection