movie-night-web/app/layouts/auth.vue

17 lines
247 B
Vue
Raw Normal View History

<template>
<div class="auth-container">
<slot/>
</div>
</template>
<style scoped>
.auth-container {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
flex-direction: column;
gap: 3rem;
}
</style>