add: faqs added
This commit is contained in:
28
src/layouts/PublicLayout.vue
Normal file
28
src/layouts/PublicLayout.vue
Normal file
@@ -0,0 +1,28 @@
|
||||
<script setup>
|
||||
import Header from '../components/Header.vue';
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Header/>
|
||||
<div class="auth-layout">
|
||||
<RouterView/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.auth-layout {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
align-content: center;
|
||||
/* background-color: red; */
|
||||
width: 100%;
|
||||
margin: 0px auto !important;
|
||||
padding: 0px 5px !important;
|
||||
overflow: hidden;
|
||||
min-height: 700px;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user