Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
SethSharp committed Sep 17, 2024
1 parent 310c924 commit 948526b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/js/Pages/Dashboard/Blogs/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ onMounted(() => {
<BaseDropdownMenuItem v-if="!item.deleted_at">
<Link
:href="route('dashboard.blogs.edit', item)"
class="justify-center flex size-full"
class="justify-center flex size-full gap-2"
>
<PencilSquareIcon
class="text-gray-500 dark:text-slate-300 transition size-7"
Expand All @@ -155,7 +155,7 @@ onMounted(() => {
<BaseDropdownMenuItem v-if="!item.deleted_at">
<a
:href="route('blogs.show', item)"
class="justify-center flex size-full"
class="justify-center flex size-full gap-2"
>
<EyeIcon
class="text-gray-500 dark:text-slate-300 transition size-7"
Expand All @@ -169,7 +169,7 @@ onMounted(() => {
<BaseDropdownMenuItem v-if="!item.deleted_at">
<button
@click.prevent="deleteBlog(item)"
class="justify-center flex size-full"
class="justify-center flex size-full gap-2"
>
<TrashIcon
class="text-gray-500 dark:text-slate-300 transition size-7"
Expand Down

0 comments on commit 948526b

Please sign in to comment.