refactor(settings): improve profile metadata input style

This commit is contained in:
三咲智子 2023-01-04 18:47:19 +08:00
parent 73fe063a8f
commit bf0c3425fc
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E

View file

@ -48,17 +48,13 @@ const chooseIcon = (i: number, text: string) => {
</CommonDropdown> </CommonDropdown>
<input <input
v-model="form.fieldsAttributes[i - 1].name" v-model="form.fieldsAttributes[i - 1].name"
type="text" type="text" placeholder="Label"
p2 border-rounded w-full bg-transparent input-base
outline-none border="~ base"
placeholder="Label"
> >
<input <input
v-model="form.fieldsAttributes[i - 1].value" v-model="form.fieldsAttributes[i - 1].value"
type="text" type="text" placeholder="Content"
p2 border-rounded w-full bg-transparent input-base
outline-none border="~ base"
placeholder="Content"
> >
</div> </div>
</div> </div>