1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-15 02:20:58 +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

@ -81,3 +81,21 @@ export const SLIDE_DOWN = keyframes`
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%);
}
`;