Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ludoguenet committed Mar 6, 2024
1 parent c169001 commit 136b6b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/views/admin/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<tbody class="divide-y divide-gray-200 bg-white">
@foreach($nudges as $nudge)
<tr>
<td class="whitespace-nowrap py-5 pl-4 pr-3 text-sm sm:pl-0">
<td class="whitespace-nowrap py-5 pl-4 pr-3 text-sm">
<div class="flex items-center">
<div x-data="" x-on:click.prevent="$dispatch('open-modal', 'nudge-preview-{{ $nudge->id }}')" class="flex-shrink-0 hover:cursor-pointer hover:text-green-500 transition ease-in-out duration-300">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/dashboard.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<tbody class="divide-y divide-gray-200 bg-white">
@foreach($nudges as $nudge)
<tr>
<td class="whitespace-nowrap py-5 pl-4 pr-3 text-sm sm:pl-0">
<td class="whitespace-nowrap py-5 pl-4 pr-3 text-sm">
<div class="flex items-center">
<div x-data="" x-on:click.prevent="$dispatch('open-modal', 'nudge-preview-{{ $nudge->id }}')" class="flex-shrink-0 hover:cursor-pointer hover:text-green-500 transition ease-in-out duration-300">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4">
Expand Down

0 comments on commit 136b6b0

Please sign in to comment.