CalendarCarousel transition speed

This commit is contained in:
Jörn-Michael Miehe 2022-09-15 17:49:06 +00:00
parent 7330f85398
commit a1d8fe7c3d

View file

@ -79,4 +79,16 @@ export default class CalendarCarousel extends Vue {
.v-carousel:deep() > div { .v-carousel:deep() > div {
max-height: 500px; 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;
}
}
}
</style> </style>