Skip to content

Commit

Permalink
fix: Fix approximate timer not being transparent when inactive (#86)
Browse files Browse the repository at this point in the history
closes #70
  • Loading branch information
Hanziness committed May 7, 2021
1 parent 4768ef0 commit d4a9758
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/timer/display/approximate.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div>
<div :class="['timer-display', { 'active': running }]">
<transition name="transition-approximate-up" mode="out-in">
<div :key="value" :class="['timer-approximate timer-display', { 'active': running }]">
<div :key="value" class="timer-approximate">
{{ value }}
</div>
</transition>
Expand Down

0 comments on commit d4a9758

Please sign in to comment.