Adjust form input sizes: smaller title/date, larger bible reference inputs

This commit is contained in:
Ryderjj89
2025-10-01 17:54:09 -04:00
parent d8c8c739fa
commit 959b70ef34

View File

@@ -44,6 +44,7 @@
v-model="form.title" v-model="form.title"
placeholder="Enter sermon title" placeholder="Enter sermon title"
:disabled="loading" :disabled="loading"
size="sm"
/> />
</UFormGroup> </UFormGroup>
@@ -52,6 +53,7 @@
v-model="form.date" v-model="form.date"
type="date" type="date"
:disabled="loading" :disabled="loading"
size="sm"
/> />
</UFormGroup> </UFormGroup>
@@ -92,6 +94,7 @@
:placeholder="`Bible reference ${index + 1}`" :placeholder="`Bible reference ${index + 1}`"
:disabled="loading" :disabled="loading"
class="flex-1" class="flex-1"
size="lg"
/> />
<UButton <UButton
@click="removeBibleReference(index)" @click="removeBibleReference(index)"