Files
Discreetly/packages/frontend-vue/layouts/default.vue
AtHeartEngineer bbd097b3ff svelte
2023-07-06 12:00:51 -04:00

14 lines
274 B
Vue

<template>
<div class="d-flex flex-column align-content-between">
<AppHeader />
<main class="container-fluid align-items-center align-self-stretch">
<slot />
</main>
</div>
</template>
<style scoped lang="scss">
main {
margin-top: 0.8rem;
}
</style>