|
/*! purgecss start ignore */
|
|
.fade-enter {
|
|
@apply .opacity-0;
|
|
}
|
|
|
|
.fade-enter-active {
|
|
@apply .opacity-100;
|
|
transition: opacity 150ms;
|
|
}
|
|
|
|
.fade-exit {
|
|
@apply .opacity-100;
|
|
}
|
|
|
|
.fade-exit-active {
|
|
@apply .opacity-0;
|
|
transition: opacity 150ms;
|
|
}
|
|
/*! purgecss end ignore */
|