ui cleanup
This commit is contained in:
parent
b6a365cde1
commit
54355fc942
6 changed files with 83 additions and 75 deletions
|
|
@ -26,8 +26,13 @@
|
|||
|
||||
<ul class="w-full flex flex-col gap-5">
|
||||
@foreach($lists as $list)
|
||||
<li class="flex justify-between text-center">
|
||||
<a href="/lists/{{$list->id}}" wire:navigate>{{$list->name}}</a>
|
||||
<li class="flex py-5 justify-between text-center">
|
||||
<a class="font-bold text-2xl" href="/lists/{{$list->id}}" wire:navigate>{{$list->name}}</a>
|
||||
@if((bool)$list->is_public === true)
|
||||
<i class="fa fa-earth" title="Public" aria-label="Public"></i>
|
||||
@else
|
||||
<i class="fa fa-lock" title="Private" aria-label="Private"></i>
|
||||
@endif
|
||||
</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue