You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
.t-transition-enter {
|
|
opacity: 0;
|
|
}
|
|
.t-transition-enter-to {
|
|
opacity: 1;
|
|
transition: opacity 1s;
|
|
}
|
|
.t-transition-leave {
|
|
opacity: 1;
|
|
}
|
|
.t-transition-leave-to {
|
|
opacity: 0;
|
|
transition: opacity 1s;
|
|
}
|