various cleanup

This commit is contained in:
Will Freeman
2025-11-20 22:57:25 -07:00
parent a3321908a8
commit 1a36c547f0
27 changed files with 916 additions and 873 deletions
+8 -1
View File
@@ -3,7 +3,7 @@
<slot name="header" />
<!-- Main content -->
<main class="mb-16">
<main :class="{ 'mb-16': !noBottomMargin }">
<slot />
</main>
@@ -14,4 +14,11 @@
<script setup lang="ts">
import Footer from '../components/layout/Footer.vue'
defineProps({
noBottomMargin: {
type: Boolean,
default: false,
},
})
</script>