mirror of
https://github.com/unraid/api.git
synced 2026-01-06 08:39:54 -06:00
17 lines
253 B
Vue
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>
|