public 기능 완료
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<template>
|
||||
<div class="public-layout">
|
||||
<main>
|
||||
<slot />
|
||||
</main>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
// 별도 로직 없음
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.public-layout,
|
||||
.public-layout > main {
|
||||
min-height: 100vh;
|
||||
min-width: 100vw;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user