
@keyframes VFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes VFadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fade-enter-active {
  animation: VFadeIn 0.3s;
}

.fade-leave-active {
  animation: VFadeOut 0.3s;
}
