Skip to content
This repository has been archived by the owner on May 27, 2021. It is now read-only.

Commit

Permalink
bg hover
Browse files Browse the repository at this point in the history
  • Loading branch information
redbastie committed Feb 5, 2021
1 parent 5b06f9f commit 0d0d36a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class DummyComponent extends Component
$v->li($DummyModelVariable->name),
$v->li(timezone($DummyModelVariable->created_at))->class('text-xs text-gray-500')
)
)->class('flex items-center justify-between px-6 py-4')
)->class('flex items-center justify-between hover:bg-gray-50 px-6 py-4')
)->empty(
fn() => $v->p('No DummyModelTitles found.')->class('px-6 py-4')
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class Index extends Component
$v->button($v->icon('trash'))->wireClick('delete', $user->id)->confirm('Delete this User?')
->class('text-blue-600 w-5 h-5')
)->class('flex space-x-3')
)->class('flex items-center justify-between px-6 py-4')
)->class('flex items-center justify-between hover:bg-gray-50 px-6 py-4')
)->empty(
fn() => $v->p('No Users found.')->class('px-6 py-4')
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class Index extends Component
$v->button($v->icon('trash'))->wireClick('delete', $DummyModelVariable->id)->confirm('Delete this DummyModelTitle?')
->class('text-blue-600 w-5 h-5')
)->class('flex space-x-3')
)->class('flex items-center justify-between px-6 py-4')
)->class('flex items-center justify-between hover:bg-gray-50 px-6 py-4')
)->empty(
fn() => $v->p('No DummyModelTitles found.')->class('px-6 py-4')
)
Expand Down

0 comments on commit 0d0d36a

Please sign in to comment.