16 lines
225 B
Vue
16 lines
225 B
Vue
|
|
<template>
|
||
|
|
<div class="auth-container">
|
||
|
|
<slot/>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<style scoped>
|
||
|
|
.auth-container {
|
||
|
|
display: flex;
|
||
|
|
justify-content: center;
|
||
|
|
align-items: center;
|
||
|
|
min-height: 100vh;
|
||
|
|
padding: 1rem;
|
||
|
|
}
|
||
|
|
</style>
|