1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-04 21:30:54 +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

@ -57,3 +57,12 @@ export const PULSATE = keyframes`
opacity: 1.0; opacity: 1.0;
} }
`; `;
export const FADE_IN = keyframes`
0% {
opacity: 0;
}
100% {
opacity: 1;
}
`;