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')"
:maxlength="maxlength"
/>
<p v-if="error" class="label">{{ error }}</p>
<p v-if="error" class="label text-error">{{ error }}</p>
</fieldset>
</template>

View File

@@ -22,14 +22,17 @@
@clearError="checkout.clearError('lastName')"
/>
<IMaskComponent
v-model="checkout.customer.phone"
type="tel"
class="input input-lg w-full"
mask="+{7} (000) 000-00-00"
placeholder="Введите телефон"
:unmask="true"
/>
<fieldset class="fieldset">
<IMaskComponent
v-model="checkout.customer.phone"
type="tel"
class="input input-lg w-full"
mask="+{7} (000) 000-00-00"
placeholder="Введите телефон"
:unmask="true"
/>
<p v-if="error" class="label text-error">{{ checkout.validationErrors.phone }}</p>
</fieldset>
<TgInput
v-model="checkout.customer.email"

View File

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