Vue 3 + Vite dashboard with PrimeVue, i18n, and API integration for institution management.
27 lines
596 B
Vue
27 lines
596 B
Vue
<!-- /src/layouts/AuthLayout.vue -->
|
|
<template>
|
|
<div class="auth-layout-wrapper">
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.auth-layout-wrapper {
|
|
display: flex !important;
|
|
flex-direction: column !important;
|
|
align-items: center !important;
|
|
justify-content: center !important;
|
|
min-height: 100vh !important;
|
|
width: 100vw !important;
|
|
max-width: 100% !important;
|
|
box-sizing: border-box !important;
|
|
background: var(--bg-primary);
|
|
margin: 0 !important;
|
|
padding: 1.5rem !important;
|
|
position: relative !important;
|
|
}
|
|
</style>
|