We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a248dc commit 40a4970Copy full SHA for 40a4970
resources/js/Components/Container.vue
@@ -1,16 +1,16 @@
1
<script setup>
2
const props = defineProps({
3
- spacedMobile: {
+ fluid: {
4
type: Boolean,
5
- default: true,
+ default: false,
6
required: false,
7
},
8
- fluid: {
+ vertical: {
9
10
default: false,
11
12
13
- vertical: {
+ flushMobile: {
14
15
16
@@ -26,7 +26,7 @@ const props = defineProps({
26
'max-w-(--breakpoint-2xl) mx-auto': !props.fluid,
27
'py-4 md:py-8 space-y-4 md:space-y-8': props.vertical
28
29
- props.spacedMobile ? 'px-4' : 'px-0',
+ props.flushMobile ? 'px-0' : 'px-4',
30
]"
31
>
32
<slot />
0 commit comments