Skip to content

Commit

Permalink
fix(element-container): mouse over animations not working
Browse files Browse the repository at this point in the history
  • Loading branch information
stfsy committed Sep 3, 2023
1 parent adda7e7 commit 12384cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/form-element-container-with-label.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div :id="parentId" :class="parentClazz" @focusin="onFocus" @focusout="onBlur">
<div :id="parentId" :class="parentClazz" @mouseover="onFocus" @focusin="onFocus" @mouseleave="onBlur" @focusout="onBlur">
<div class="relative bg-inherit">
<label :for="id" :class="labelClazz" @mousedown="onFocusRequest">{{ label }}</label>
<Transition name="form-element-hint">
Expand Down

0 comments on commit 12384cb

Please sign in to comment.