summaryrefslogtreecommitdiff
path: root/src/components/Global/LoadingBar.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Global/LoadingBar.vue')
-rw-r--r--src/components/Global/LoadingBar.vue4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/Global/LoadingBar.vue b/src/components/Global/LoadingBar.vue
index 1034de64..0e9551b5 100644
--- a/src/components/Global/LoadingBar.vue
+++ b/src/components/Global/LoadingBar.vue
@@ -80,7 +80,9 @@ export default {
opacity: 1;
transition: opacity $duration--moderate-01 $standard-easing--productive;
height: 0.4rem;
- &.fade-enter,
+
+ &.fade-enter, // Remove this vue2 based only class when switching to vue3
+ &.fade-enter-from, // This is vue3 based only class modified from 'fade-enter'
&.fade-leave-to {
opacity: 0;
}