Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
danpalmieri committed May 8, 2024
1 parent ee6ec69 commit 1c0e44c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions resources/views/components/collapsible.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<div {{ $attributes->class([
'p-2 overflow-hidden rounded-xl',
'bg-white shadow' => ! $flat,
'border' => $flat,
'border border-gray-200/60' => $flat,
]) }}>
<ul class="-my-2 divide-y divide-gray-200/60">
{{ $slot }}
</ul>
</div>
</div>
8 changes: 4 additions & 4 deletions resources/views/components/column-section.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
</div>
</div>

<x-lui::paper class="mt-5 overflow-hidden border border-gray-200/70 relative !p-0 md:col-span-2 md:mt-0">
<x-lui::paper class="mt-5 overflow-hidden border border-gray-200/60 relative !p-0 md:col-span-2 md:mt-0">
<div class="px-4 py-5 sm:p-6">
{{ $slot }}
</div>

@isset($actions)
<div class="flex items-center justify-end bg-gray-100/70 px-4 py-3 text-right sm:px-6">
{{ $actions }}
</div>
<div class="flex items-center justify-end bg-gray-100/70 px-4 py-3 text-right sm:px-6">
{{ $actions }}
</div>
@endisset
</x-lui::paper>
</div>
2 changes: 1 addition & 1 deletion resources/views/components/tabs.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
'text-sm space-x-4' => $size === 'sm',
]);
@endphp
<div class="border-b border-gray-200/50 pb-1.5 w-full">
<div class="border-b border-gray-200/60 pb-1.5 w-full">
<nav {{ $attributes->class([$classes]) }}>
{{ $slot }}
</nav>
Expand Down

0 comments on commit 1c0e44c

Please sign in to comment.