Nyoom, bye bye Vue

This commit is contained in:
Dane Everitt 2019-06-28 22:52:57 -07:00
parent 109bed4f7d
commit e69d55ec6f
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
80 changed files with 2 additions and 5097 deletions

View file

@ -0,0 +1,28 @@
/*! purgecss start ignore */
.fade-enter {
@apply .opacity-0;
}
.fade-enter-active {
@apply .opacity-100;
transition: opacity 250ms;
}
.fade-exit {
@apply .opacity-100;
}
.fade-exit-active {
@apply .opacity-0;
transition: opacity 250ms;
}
/** @todo fix this, hides footer stuff */
div.route-transition-group {
@apply .relative;
& section {
@apply .absolute .w-full .pin-t .pin-l;
}
}
/*! purgecss end ignore */