habits.andr33v.ru/app/layouts/login.vue

16 lines
234 B
Vue

<template>
<div class="login-layout">
<slot />
</div>
</template>
<style scoped>
.login-layout {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f0f4f8;
}
</style>