@mixin ease-motion($className, $keyframeName) {
    @include make-motion($className, $keyframeName);
    .#{$className}-enter-active, .#{$className}-appear {
        opacity: 0;
        animation-timing-function: linear;
        animation-duration: $transition-time;
    }
    .#{$className}-leave-active {
        animation-timing-function: linear;
        animation-duration: $transition-time;
    }
}

@include ease-motion(ease, ivuEase);

@keyframes ivuEaseIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ivuEaseOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.9);
    }
}