mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
bdfbb59d76
- new icons - rename upnext.vue to queue.vue - other tiny changes
46 lines
688 B
Vue
46 lines
688 B
Vue
<template>
|
|
<div class="loaderx" :class="{ loader: loading, not_loader: !loading }">
|
|
<div v-if="!loading">😹</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import state from "@/composables/state.js";
|
|
export default {
|
|
setup() {
|
|
return {
|
|
loading: state.loading,
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.loaderx {
|
|
position: absolute;
|
|
top: 0.65rem;
|
|
width: 1.5rem;
|
|
height: 1.5rem;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.loader {
|
|
border: dotted $blue;
|
|
animation: spin 0.25s linear infinite;
|
|
|
|
@keyframes spin {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
}
|
|
|
|
.not_loader {
|
|
display: grid;
|
|
place-items: center;
|
|
}
|
|
</style>
|