mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-10-22 13:08:18 +00:00
12 lines
218 B
Vue
12 lines
218 B
Vue
<template>
|
|
<div class="w-full p-4 mx-auto" :class="{ 'max-w-5xl': !fullWidth, 'md:px-0': fullWidth }">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps<{
|
|
fullWidth?: boolean;
|
|
}>();
|
|
</script>
|