Files
remanso/src/components/LiteLoading.vue
Julien Calixte 9571752f26 Feat/migrate to daisy (#10)
* feat: init daisyui!

* feat: change theme and colors

* change dark theme and add colors
2024-12-21 20:05:37 +01:00

15 lines
244 B
Vue

<template>
<div class="lite-loading">
<span class="loading loading-spinner"></span>
</div>
</template>
<style scoped lang="scss">
.lite-loading {
display: flex;
flex: 1;
justify-content: center;
align-items: center;
}
</style>