mirror of
https://github.com/status-im/reagent.git
synced 2025-01-13 21:34:29 +00:00
19 lines
274 B
CSS
19 lines
274 B
CSS
|
|
.todoitem-enter {
|
|
opacity: 0.1;
|
|
transition: opacity .2s ease-in;
|
|
}
|
|
|
|
.todoitem-enter.todoitem-enter-active {
|
|
opacity: 1;
|
|
}
|
|
|
|
.todoitem-leave {
|
|
opacity: 0.8;
|
|
transition: opacity 0.2s ease-out;
|
|
}
|
|
|
|
.todoitem-leave.todoitem-leave-active {
|
|
opacity: 0.1;
|
|
}
|