Files
OpenIsle/frontend_nuxt/components/CallbackPage.vue
2025-08-11 18:16:13 +08:00

31 lines
589 B
Vue

<template>
<div class="callback-page">
<l-hatch size="28" stroke="4" speed="3.5" color="var(--primary-color)"></l-hatch>
<div class="callback-page-text">Magic is happening...</div>
</div>
</template>
<script>
export default {
name: 'CallbackPage',
}
</script>
<style scoped>
.callback-page {
background-color: var(--background-color);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
}
.callback-page-text {
margin-top: 25px;
font-size: 16px;
color: var(--primary-color);
font-weight: bold;
}
</style>