mirror of
https://github.com/status-im/reagent.git
synced 2025-01-28 20:56:29 +00:00
9dfe18e918
Closes #311
22 lines
264 B
CSS
22 lines
264 B
CSS
.hide {
|
|
opacity: 0.01;
|
|
}
|
|
|
|
.fade-enter {
|
|
opacity: 0.01;
|
|
}
|
|
|
|
.fade-enter.fade-enter-active {
|
|
opacity: 1;
|
|
transition: opacity 500ms ease-in;
|
|
}
|
|
|
|
.fade-exit {
|
|
opacity: 1;
|
|
}
|
|
|
|
.fade-exit.fade-exit-active {
|
|
opacity: 0.01;
|
|
transition: opacity 300ms ease-in;
|
|
}
|