Files
bio_frontend/layouts/auth.vue
2025-08-08 13:11:33 +09:00

30 lines
472 B
Vue

<template>
<div class="auth-layout">
<main class="auth-main">
<slot />
</main>
</div>
</template>
<script setup lang="ts">
// 인증 페이지용 레이아웃 - 헤더와 푸터 없음
</script>
<style scoped>
.auth-layout {
min-height: 100vh;
background: #f8f9fa;
display: flex;
flex-direction: column;
}
.auth-main {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 0;
}
</style>