Skip to content

Commit 62510ef

Browse files
committed
Enhance AppCheckbox styling by adding hover cursor pointer to checkbox inputs
1 parent 5e04298 commit 62510ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stubs/resources/js/Components/Form/AppCheckbox.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<input
44
v-if="isBooleanType"
55
type="checkbox"
6-
class="text-primary h-4 w-4 rounded-sm focus:ring-2"
6+
class="text-primary h-4 w-4 rounded-sm focus:ring-2 hover:cursor-pointer"
77
v-bind="$attrs"
88
:checked="modelValue"
99
@change="updateBooleanValue"
@@ -13,7 +13,7 @@
1313
<input
1414
v-else
1515
type="checkbox"
16-
class="text-primary h-4 w-4 rounded-sm focus:ring-2"
16+
class="text-primary h-4 w-4 rounded-sm focus:ring-2 hover:cursor-pointer"
1717
v-bind="$attrs"
1818
:value="value"
1919
:checked="isChecked"

0 commit comments

Comments
 (0)