1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-14 18:10:56 +00:00

add slide left/right animations

This commit is contained in:
slowbackspace 2019-01-24 18:44:43 +01:00
parent 99af843c80
commit 850ea18250

View File

@ -80,4 +80,22 @@ export const SLIDE_DOWN = keyframes`
100% {
transform: translateY(0%);
}
`;
export const SLIDE_RIGHT = keyframes`
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(0%);
}
`;
export const SLIDE_LEFT = keyframes`
0% {
transform: translateX(0%);
}
100% {
transform: translateX(-100%);
}
`;