Skip to content

Commit c7ba6b9

Browse files
authored
fix: opacity of FormCheckbox (#2107)
1 parent 28ddfbe commit c7ba6b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/client/internals/FormCheckbox.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ const value = defineModel<boolean>('modelValue', {
1111
<template>
1212
<div border="~ main rounded" flex="~ gap-2 items-center" relative h-5 w-5 p0.5 hover:bg-active p1>
1313
<div i-ri-check-line :class="value ? '' : 'op0'" />
14-
<input v-model="value" type="checkbox" absolute inset-0 opacity-0.1 :disabled="disabled">
14+
<input v-model="value" type="checkbox" absolute inset-0 opacity-10 :disabled="disabled">
1515
</div>
1616
</template>

0 commit comments

Comments
 (0)