Dominik Milacher 85d080ab05
All checks were successful
Build and deploy updated apps / Build & deploy (push) Successful in 2m12s
Add panoramablick implementation
2025-06-13 23:11:04 +02:00

12 lines
325 B
Vue

<script setup lang="ts">
defineOptions({inheritAttrs: false})
const {innerClass = 'px-4 sm:px-6 lg:px-8'} = defineProps<{ innerClass?: string }>()
</script>
<template>
<div class="w-full flex justify-center">
<div :class="['w-full max-w-6xl', innerClass]" v-bind="$attrs">
<slot/>
</div>
</div>
</template>