diff --git a/packages/app/src/theme/animations.less b/packages/app/src/theme/animations.less index 18c64964..c9ba3214 100755 --- a/packages/app/src/theme/animations.less +++ b/packages/app/src/theme/animations.less @@ -47,6 +47,26 @@ opacity: 1; } + to { + opacity: 0; + } +} + +@keyframes appear { + from { + opacity: 0; + } + + to { + opacity: 1; + } +} + +@keyframes desappear { + from { + opacity: 1; + } + to { opacity: 0; }