mirror of
https://github.com/web3privacy/explorer-app.git
synced 2024-10-15 16:46:26 +02:00
fix: date picker width
This commit is contained in:
parent
3a582049ec
commit
2f92361afb
1 changed files with 3 additions and 3 deletions
|
@ -78,20 +78,20 @@ const days = computed(() => {
|
|||
>
|
||||
<ProjectCreateComponentsSelect
|
||||
v-model="day"
|
||||
class="lg:w-full!"
|
||||
class="w-full!"
|
||||
:options="days.map(day => ({ label: day.toString(), value: day }))"
|
||||
placeholder="Day"
|
||||
/>
|
||||
<ProjectCreateComponentsSelect
|
||||
v-model="month"
|
||||
class="lg:w-full!"
|
||||
class="w-full!"
|
||||
ml--2px
|
||||
:options="months.map(month => ({ label: month.label, value: month.value }))"
|
||||
placeholder="Month"
|
||||
/>
|
||||
<ProjectCreateComponentsSelect
|
||||
v-model="year"
|
||||
class="lg:w-full!"
|
||||
class="w-full!"
|
||||
ml--2px
|
||||
:options="years.map(year => ({ label: year.toString(), value: year }))"
|
||||
placeholder="Year"
|
||||
|
|
Loading…
Reference in a new issue