Files
api/web/components/Ui/PageContainer.vue
2023-11-01 13:36:17 -07:00

17 lines
253 B
Vue

<script setup lang="ts">
withDefaults(defineProps<{
maxWidth?: string;
}>(), {
maxWidth: 'max-w-1024px',
});
</script>
<template>
<div
class="grid gap-y-24px w-full mx-auto px-16px"
:class="maxWidth"
>
<slot />
</div>
</template>