From 4cb2e92235413bde7283689c32a303e5bb80baeb Mon Sep 17 00:00:00 2001 From: Abizrh Date: Thu, 28 Aug 2025 02:03:27 +0700 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=20enhance=20(pub):=20adjust=20compone?= =?UTF-8?q?nt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pub/custom-ui/form/field-group.vue | 2 +- app/components/pub/ui/select/Select.vue | 50 +++++++++++++++++-- .../pub/ui/select/SelectContent.vue | 40 +++++++-------- .../pub/ui/select/SelectTrigger.vue | 11 ++-- 4 files changed, 73 insertions(+), 30 deletions(-) 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 @@