mirror of
https://github.com/unraid/api.git
synced 2026-02-19 14:38:29 -06:00
16 lines
257 B
Vue
16 lines
257 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></slot>
|
|
</div>
|
|
</template> |