From a1d8fe7c3dd6f2918a057e2ad3988b59304ecb5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= <40151420+ldericher@users.noreply.github.com> Date: Thu, 15 Sep 2022 17:49:06 +0000 Subject: [PATCH] CalendarCarousel transition speed --- ui/src/components/calendar/CalendarCarousel.vue | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/ui/src/components/calendar/CalendarCarousel.vue b/ui/src/components/calendar/CalendarCarousel.vue index c16d4c6..a559a1b 100644 --- a/ui/src/components/calendar/CalendarCarousel.vue +++ b/ui/src/components/calendar/CalendarCarousel.vue @@ -79,4 +79,16 @@ export default class CalendarCarousel extends Vue { .v-carousel:deep() > div { max-height: 500px; } + +.v-window { + &-x-transition, + &-x-reverse-transition, + &-y-transition, + &-y-reverse-transition { + &-enter-active, + &-leave-active { + transition: 1.5s cubic-bezier(0.25, 0.8, 0.5, 1) !important; + } + } +} \ No newline at end of file