Skip to content

Commit 245de9c

Browse files
committed
fix: don't flex shrink checkboxes (#1397)
1 parent 7759027 commit 245de9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/ui/InputCheckbox.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const { v } = useValidation(props.label, undefined, internalVal);
2323
v-model="internalVal"
2424
v-bind="$attrs"
2525
type="checkbox"
26-
class="appearance-none h-4 w-4 bg-gray-300 mr-2 rounded-sm group-hover:bg-gray-400 !checked:bg-primary-500"
26+
class="appearance-none h-4 w-4 bg-gray-300 mr-2 rounded-sm shrink-0 group-hover:bg-gray-400 !checked:bg-primary-500"
2727
dark="bg-gray-600 group-hover:bg-gray-500"
2828
:cursor="disabled ? 'auto' : 'pointer'"
2929
:disabled="disabled"

0 commit comments

Comments
 (0)