PortIO/resources/js/components/Layout.vue

17 lines
201 B
Vue
Raw Normal View History

2023-03-14 14:33:06 +00:00
<template>
2023-07-30 15:52:39 +00:00
<main class="py-4">
<div class="container mb-8">
<router-view/>
</div>
</main>
2023-03-14 14:33:06 +00:00
</template>
<style scoped>
2023-07-30 15:52:39 +00:00
.mb-8 {
2023-03-14 14:33:06 +00:00
margin-bottom: 8rem;
2023-07-30 15:52:39 +00:00
}
2023-03-14 14:33:06 +00:00
</style>