mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Search): fix search style when has error message (#12385)
This commit is contained in:
parent
f8cfc0ed44
commit
4495fba799
@ -125,7 +125,7 @@ export default defineComponent({
|
|||||||
v-slots={pick(slots, ['left-icon', 'right-icon'])}
|
v-slots={pick(slots, ['left-icon', 'right-icon'])}
|
||||||
ref={fieldRef}
|
ref={fieldRef}
|
||||||
type="search"
|
type="search"
|
||||||
class={bem('field')}
|
class={bem('field', { 'with-message': fieldAttrs.errorMessage })}
|
||||||
border={false}
|
border={false}
|
||||||
onBlur={onBlur}
|
onBlur={onBlur}
|
||||||
onFocus={onFocus}
|
onFocus={onFocus}
|
||||||
|
@ -48,6 +48,11 @@
|
|||||||
.van-field__left-icon {
|
.van-field__left-icon {
|
||||||
color: var(--van-search-left-icon-color);
|
color: var(--van-search-left-icon-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&--with-message {
|
||||||
|
height: auto;
|
||||||
|
align-items: flex-start;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&--show-action {
|
&--show-action {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user