Skip to content

Commit

Permalink
Updated spinner to tailwind
Browse files Browse the repository at this point in the history
  • Loading branch information
DonChiaQE authored and cweitat committed Jul 15, 2023
1 parent 8d4dc39 commit 4bede01
Showing 1 changed file with 1 addition and 27 deletions.
28 changes: 1 addition & 27 deletions src/components/Utilities/LoadingView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,33 +4,7 @@
class="fixed top-0 left-0 right-0 bottom-0 w-full h-screen z-50 overflow-hidden bg-gray-700 opacity-75 flex flex-col items-center justify-center"
>
<div
class="loader ease-linear rounded-full border-4 border-t-4 border-gray-200 h-12 w-12 mb-4"
class="w-12 h-12 rounded-full animate-spin border-2 border-solid border-blue-600 border-t-transparent"
></div>
</div>
</template>

<style scoped>
.loader {
border-top-color: #4a4af4;
-webkit-animation: spinner 1.5s linear infinite;
animation: spinner 1.5s linear infinite;
}
@-webkit-keyframes spinner {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes spinner {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>

0 comments on commit 4bede01

Please sign in to comment.