fix: UI fixes

This commit is contained in:
2025-08-16 22:41:32 +03:00
parent a0abc14c6d
commit 854dfdf7f2
3 changed files with 13 additions and 10 deletions

View File

@@ -10,7 +10,7 @@
@input="$emit('clearError')" @input="$emit('clearError')"
:maxlength="maxlength" :maxlength="maxlength"
/> />
<p v-if="error" class="label">{{ error }}</p> <p v-if="error" class="label text-error">{{ error }}</p>
</fieldset> </fieldset>
</template> </template>

View File

@@ -22,6 +22,7 @@
@clearError="checkout.clearError('lastName')" @clearError="checkout.clearError('lastName')"
/> />
<fieldset class="fieldset">
<IMaskComponent <IMaskComponent
v-model="checkout.customer.phone" v-model="checkout.customer.phone"
type="tel" type="tel"
@@ -30,6 +31,8 @@
placeholder="Введите телефон" placeholder="Введите телефон"
:unmask="true" :unmask="true"
/> />
<p v-if="error" class="label text-error">{{ checkout.validationErrors.phone }}</p>
</fieldset>
<TgInput <TgInput
v-model="checkout.customer.email" v-model="checkout.customer.email"

View File

@@ -27,7 +27,7 @@
</li> </li>
</ul> </ul>
<p class="text-xs text-neutral mb-10"> <p class="text-xs mb-10">
Подтверждение отправлено Вам в личных сообщениях. Подтверждение отправлено Вам в личных сообщениях.
</p> </p>