mirror of
https://github.com/trezor/trezor-wallet
synced 2025-01-28 08:51:04 +00:00
add slide left/right animations
This commit is contained in:
parent
99af843c80
commit
850ea18250
@ -81,3 +81,21 @@ export const SLIDE_DOWN = keyframes`
|
|||||||
transform: translateY(0%);
|
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%);
|
||||||
|
}
|
||||||
|
`;
|
Loading…
Reference in New Issue
Block a user