woodpecker/web/src/components/layout/FluidContainer.vue
Divya Jain d785d05718
Use pipeline wrapper and improve scaffold UI (#1368)
Co-authored-by: Anbraten <anton@ju60.de>
Co-authored-by: 6543 <6543@obermui.de>
2022-11-15 10:13:52 +01:00

14 lines
241 B
Vue

<template>
<div class="w-full p-2 md:p-4 lg:px-0 mx-auto" :class="{ 'max-w-5xl': !fullWidth }">
<slot />
</div>
</template>
<script setup lang="ts">
export interface Props {
fullWidth?: boolean;
}
defineProps<Props>();
</script>