refactor: vue comp: page-loader + modal-create-page

This commit is contained in:
NGPixel
2017-05-26 00:12:38 -04:00
parent f075c266ef
commit c13c754c4c
10 changed files with 89 additions and 42 deletions

View File

@@ -1,4 +1,4 @@
#page-loader {
.page-loader {
position: fixed;
top: 0;
left: 0;
@@ -28,6 +28,10 @@
}
}
&-leave-active {
animation: pageLoaderExit 1s ease forwards;
}
@include keyframes(pageLoaderExit) {
0% {
opacity: 1;
@@ -43,12 +47,4 @@
}
}
&.is-loaded {
animation: pageLoaderExit 1s ease forwards;
}
&.is-hidden {
display: none !important;
}
}