init source
This commit is contained in:
29
layouts/auth.vue
Normal file
29
layouts/auth.vue
Normal file
@@ -0,0 +1,29 @@
|
||||
<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>
|
Reference in New Issue
Block a user