1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-12-30 19:00:53 +00:00

added fadein animation

This commit is contained in:
Maroš Špak 2018-12-11 18:46:58 +01:00
parent 461865de1c
commit 873d6c47b7

View File

@ -56,4 +56,13 @@ export const PULSATE = keyframes`
50% {
opacity: 1.0;
}
`;
export const FADE_IN = keyframes`
0% {
opacity: 0;
}
100% {
opacity: 1;
}
`;