2019-06-10 03:26:20 +01:00
|
|
|
/*! purgecss start ignore */
|
|
|
|
.fade-enter {
|
|
|
|
@apply .opacity-0;
|
2018-09-06 06:55:59 +01:00
|
|
|
}
|
|
|
|
|
2018-05-26 22:50:38 +01:00
|
|
|
.fade-enter-active {
|
2019-06-10 03:26:20 +01:00
|
|
|
@apply .opacity-100;
|
|
|
|
transition: opacity 150ms;
|
2018-12-30 23:31:41 +00:00
|
|
|
}
|
|
|
|
|
2019-06-10 03:26:20 +01:00
|
|
|
.fade-exit {
|
|
|
|
@apply .opacity-100;
|
2018-12-30 23:31:41 +00:00
|
|
|
}
|
|
|
|
|
2019-06-10 03:26:20 +01:00
|
|
|
.fade-exit-active {
|
|
|
|
@apply .opacity-0;
|
|
|
|
transition: opacity 150ms;
|
2018-12-30 23:31:41 +00:00
|
|
|
}
|
2019-06-10 03:26:20 +01:00
|
|
|
/*! purgecss end ignore */
|