Skip to content

Commit

Permalink
Show larger square when data is unavailable
Browse files Browse the repository at this point in the history
  • Loading branch information
skybluesofa committed Feb 4, 2024
1 parent a7219c1 commit bf58348
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/c2c/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

@foreach ($info['rows']['current']['cells'] as $position => $positionInformation)
@if (empty($positionInformation['weather']))
<div class="bg-stone-900 text-stone-600 p-4 flex flex-row"><div class="grow self-center text-center"><i class="bi bi-slash-circle block text-3xl pb-2"></i>No data available for this date</div></div>
<div class="bg-stone-900 text-stone-600 p-4 flex flex-row min-h-96"><div class="grow self-center text-center"><i class="bi bi-slash-circle block text-3xl pb-2"></i>No data available for this date</div></div>
@else
<div class="grid grid-cols-4 gap-1 @if ($position!='current') opacity-75 @else bg-stone-700 bg-opacity-50 outline outline-stone-700/50 outline-4 @endif">
@foreach ($info['meta']['design'] as $rows)
Expand Down

0 comments on commit bf58348

Please sign in to comment.