Files
vuefilemanager/resources/js/components/VueFileManagerComponents/Auth/AuthContentWrapper.vue
2020-03-10 19:00:32 +01:00

26 lines
406 B
Vue

<template>
<div id="auth">
<slot></slot>
</div>
</template>
<script>
export default {
name: 'AuthContentWrapper',
}
</script>
<style scoped lang="scss">
@import "@assets/app.scss";
#auth {
height: 100%;
width: 100%;
display: table;
//display: flex;
//align-items: center;
//justify-content: center;
}
</style>