Skip to content

Commit

Permalink
fix: remove z-index of ColorPicker (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
SharerMax committed May 16, 2023
1 parent 93a56e8 commit 37f64b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ColorPicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ defineProps({
<slot />
</div>
<input
class="absolute top-0 bottom-0 left-0 right-0 opacity-0 w-full h-full cursor-pointer z-10"
class="absolute top-0 bottom-0 left-0 right-0 opacity-0 w-full h-full cursor-pointer"
:value="value"
type="color"
@input="e => $emit('update:value', (e.target as any).value)"
Expand Down

0 comments on commit 37f64b0

Please sign in to comment.