Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/js/Components/Button.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ defineProps({
<template>
<button
:type="type"
class="inline-flex items-center rounded-md border border-transparent bg-gray-800 px-4 py-2 text-xs font-semibold uppercase tracking-widest text-white transition hover:bg-gray-700 focus:border-gray-900 focus:outline-hidden focus:ring-3 focus:ring-gray-300 active:bg-gray-900 disabled:opacity-25 dark:bg-gray-200 dark:text-gray-800 dark:hover:bg-gray-400 dark:focus:border-gray-100 dark:focus:ring-gray-700 dark:active:bg-gray-100">
class="inline-flex items-center rounded-md border border-transparent bg-gray-800 px-4 py-2 text-xs font-semibold uppercase tracking-widest text-white transition hover:bg-gray-700 focus:border-gray-900 focus:outline-hidden focus:ring-3 focus:ring-gray-300 active:bg-gray-900 disabled:opacity-25 dark:bg-gray-200 dark:text-gray-800 dark:hover:bg-gray-400 dark:focus:border-gray-100 dark:focus:ring-gray-700 dark:active:bg-gray-100 cursor-pointer">
<slot />
</button>
</template>
6 changes: 3 additions & 3 deletions resources/js/Shared/Form/PrettyButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ defineProps({

<template>
<button
:class="'dark:box-s relative border-zinc-900 bg-white text-sm dark:border-zinc-100 dark:bg-gray-800 dark:text-gray-100 flex'"
:class="'dark:box-s relative cursor-pointer border-zinc-900 bg-white text-sm dark:border-zinc-100 dark:bg-gray-800 dark:text-gray-100 flex'"
:disabled="state === 'loading' || state === 'disabled'"
type="submit">
<span v-if="state === 'loading'">
Expand All @@ -28,9 +28,9 @@ defineProps({

<MinusIcon v-else-if="icon === 'minus'" />

<Trash2 class="icon relative me-1 inline h-5 w-5" v-else-if="icon === 'trash'" />
<Trash2 class="icon relative me-1 inline h-5 w-5 cursor-pointer" v-else-if="icon === 'trash'" />

<span>
<span class="cursor-pointer">
{{ text }}
</span>

Expand Down
2 changes: 1 addition & 1 deletion resources/js/Shared/Icons/DoorIcon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ defineProps({

<svg
v-if="type == 'entry'"
class="icon relative me-1 inline h-5 w-5"
class="icon relative me-1 inline h-5 w-5 cursor-pointer"
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
Expand Down
2 changes: 1 addition & 1 deletion resources/js/Shared/Icons/PlusIcon.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<svg
xmlns="http://www.w3.org/2000/svg"
class="icon relative me-1 inline h-5 w-5"
class="icon relative me-1 inline h-5 w-5 cursor-pointer"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor">
Expand Down