Files
lucia-frontend/src/components/LoadingOverlay.vue

12 lines
373 B
Vue

<!-- The Lucia project.
Copyright 2023-2026 DSP, inc. All rights reserved.
Authors:
chiayin.kuo@dsp.im (chiayin), 2023/1/31 -->
<template>
<div
class="w-full h-full fixed inset-0 m-auto flex justify-center items-center bg-gradient-to-tr from-neutral-500/50 to-neutral-900/50 z-[9999]"
>
<span class="loader block"></span>
</div>
</template>