conjure-os/frontend/src/components/LoadingModal.vue

14 lines
293 B
Vue

<template>
<div class="fixed inset-0 bg-black bg-opacity-80 flex items-center justify-center z-50">
<div class="bg-white text-black p-6 rounded-lg text-center max-w-sm w-full">
Loading...
</div>
</div>
</template>
<script setup lang="ts">
</script>
<style scoped>
</style>