mirror of
https://github.com/status-im/reagent.git
synced 2025-01-13 21:34:29 +00:00
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;
|
||
|
}
|