Skip to content

Commit

Permalink
Delay tt to prevent jump (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
MauserBitfly authored Mar 4, 2024
1 parent 234d005 commit 379dfed
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions frontend/components/bc/BcTooltip.vue
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,12 @@ onUnmounted(() => {
</template>

<style lang="scss" scoped>
@keyframes fadeIn {
0% { opacity: 0; }
50% { opacity: 0; }
100% { opacity: 1; }
}
.slot_container {
display: inline;
Expand All @@ -183,6 +189,8 @@ onUnmounted(() => {
height: 1px;
overflow: visible;
z-index: 99999;
opacity: 1;
animation: fadeIn 100ms;
}
.bc-tooltip {
Expand Down

0 comments on commit 379dfed

Please sign in to comment.