Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
calebporzio committed Sep 21, 2024
1 parent 37c6f0a commit 9e62a82
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/flux-lite.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"/flux.js": "ce95da9d"
"/flux.js": "6b6c72d9"
}
2 changes: 1 addition & 1 deletion stubs/resources/views/flux/button-or-link.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
])

@php
$current = $current === null ? ($href ? request()->is(trim($href, '/')) : false) : $current;
$current = $current === null ? ($href ? request()->is($href === '/' ? '/' : trim($href, '/')) : false) : $current;
@endphp

<?php if ($href): ?>
Expand Down
2 changes: 1 addition & 1 deletion stubs/resources/views/flux/menu/index.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@php
$classes = Flux::classes()
->add('min-w-48 p-[.3125rem]')
->add('[:where(&)]:min-w-48 p-[.3125rem]')
->add('rounded-lg shadow-sm')
->add('border border-zinc-200 dark:border-zinc-600')
->add('bg-white dark:bg-zinc-700')
Expand Down
2 changes: 1 addition & 1 deletion stubs/resources/views/flux/navmenu/index.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@php
$classes = Flux::classes()
->add('min-w-48 p-[.3125rem]')
->add('[:where(&)]:min-w-48 p-[.3125rem]')
->add('rounded-lg shadow-sm')
->add('border border-zinc-200 dark:border-zinc-600')
->add('bg-white dark:bg-zinc-700')
Expand Down

0 comments on commit 9e62a82

Please sign in to comment.