diff --git a/app/components/pub/custom-ui/form/field-group.vue b/app/components/pub/custom-ui/form/field-group.vue index d24d153b..bb2ed72a 100644 --- a/app/components/pub/custom-ui/form/field-group.vue +++ b/app/components/pub/custom-ui/form/field-group.vue @@ -20,7 +20,7 @@ const wrapperClass = computed(() => [ 'w-full flex-shrink-0', props.column === 1 && props.side !== 'break' ? 'pe-4 md:w-1/1 ' : '', - props.column === 2 && props.side !== 'break' ? 'pe-4 md:w-1/2 ' : '', + props.column === 2 && props.side !== 'break' ? 'pe-4 md:w-1/2 my-3' : '', props.column === 3 && props.side !== 'break' ? 'pe-4 md:w-1/3' : '', props.column === 2 && props.side === 'break' ? 'md:w-1/2' : '', props.column === 3 && props.side === 'break' ? 'md:w-1/3' : '', diff --git a/app/components/pub/ui/select/Select.vue b/app/components/pub/ui/select/Select.vue index adc42fdf..3020ed97 100644 --- a/app/components/pub/ui/select/Select.vue +++ b/app/components/pub/ui/select/Select.vue @@ -1,8 +1,29 @@