toggle-corp/react-store

View on GitHub
components/View/Wizard/styles.scss

Summary

Maintainability
Test Coverage

.next {
    animation: slide-from-right var(--duration-slow) ease-in;
}

.prev {
    animation: slide-from-left var(--duration-slow) ease-in;
}

@keyframes slide-from-right {
    from {
        transform: translateX(3%);
        opacity: 0;
    }

    to {
        transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes slide-from-left {
    from {
        transform: translateX(-3%);
        opacity: 0;
    }

    to {
        transform: translateX(0%);
        opacity: 1;
    }
}