fix(Search): fix search style when has error message (#12385)

This commit is contained in:
johnsonwong666 2023-10-28 19:22:40 +08:00 committed by GitHub
parent f8cfc0ed44
commit 4495fba799
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -125,7 +125,7 @@ export default defineComponent({
v-slots={pick(slots, ['left-icon', 'right-icon'])}
ref={fieldRef}
type="search"
class={bem('field')}
class={bem('field', { 'with-message': fieldAttrs.errorMessage })}
border={false}
onBlur={onBlur}
onFocus={onFocus}

View File

@ -48,6 +48,11 @@
.van-field__left-icon {
color: var(--van-search-left-icon-color);
}
&--with-message {
height: auto;
align-items: flex-start;
}
}
&--show-action {