fix: date picker width

This commit is contained in:
DomWane 2024-10-02 15:56:51 +02:00
parent 3a582049ec
commit 2f92361afb

View file

@ -78,20 +78,20 @@ const days = computed(() => {
> >
<ProjectCreateComponentsSelect <ProjectCreateComponentsSelect
v-model="day" v-model="day"
class="lg:w-full!" class="w-full!"
:options="days.map(day => ({ label: day.toString(), value: day }))" :options="days.map(day => ({ label: day.toString(), value: day }))"
placeholder="Day" placeholder="Day"
/> />
<ProjectCreateComponentsSelect <ProjectCreateComponentsSelect
v-model="month" v-model="month"
class="lg:w-full!" class="w-full!"
ml--2px ml--2px
:options="months.map(month => ({ label: month.label, value: month.value }))" :options="months.map(month => ({ label: month.label, value: month.value }))"
placeholder="Month" placeholder="Month"
/> />
<ProjectCreateComponentsSelect <ProjectCreateComponentsSelect
v-model="year" v-model="year"
class="lg:w-full!" class="w-full!"
ml--2px ml--2px
:options="years.map(year => ({ label: year.toString(), value: year }))" :options="years.map(year => ({ label: year.toString(), value: year }))"
placeholder="Year" placeholder="Year"