refactor: try sorting components into sub-folders
Some checks failed
ci/woodpecker/push/build-and-publish Pipeline failed
Some checks failed
ci/woodpecker/push/build-and-publish Pipeline failed
This commit is contained in:
parent
5dbf21b0ab
commit
15e5a21277
10 changed files with 0 additions and 20 deletions
38
components/Popups/Loading.vue
Normal file
38
components/Popups/Loading.vue
Normal file
|
@ -0,0 +1,38 @@
|
|||
<template>
|
||||
<div id="loading-container">
|
||||
<Icon name="lucide:loader-circle" id="loading-circle" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
#loading-container {
|
||||
position: fixed;
|
||||
left: 50dvw;
|
||||
top: 50dvh;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
#loading-circle {
|
||||
animation-name: spin;
|
||||
animation-duration: 1s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue