mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-25 17:53:56 +01:00
14 lines
272 B
SCSS
14 lines
272 B
SCSS
.fab-appear, .fab-enter{
|
|
opacity: 0;
|
|
}
|
|
.fab-appear.fab-appear-active, .fab-enter.fab-enter-active{
|
|
transition: all 0.4s ease-out;
|
|
opacity: 1;
|
|
}
|
|
.fab-leave{
|
|
opacity: 1;
|
|
}
|
|
.fab-leave.fab-leave-active{
|
|
transition: opacity 0.2s ease-out;
|
|
opacity: 0;
|
|
}
|