25 lines
418 B
Vue
25 lines
418 B
Vue
<template>
|
|
<div class="auth-layout">
|
|
<main class="auth-page-container">
|
|
<router-view />
|
|
</main>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.auth-layout {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: var(--bg-color-page, #f0f2f5);
|
|
}
|
|
|
|
.auth-page-container {
|
|
width: 100%;
|
|
max-width: 450px;
|
|
padding: 2rem;
|
|
}
|
|
</style> |