mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Field): align center when using input slot
This commit is contained in:
parent
9326ad84f8
commit
9d8cf7f8d3
@ -263,7 +263,11 @@ export default createComponent({
|
|||||||
const inputSlot = this.slots('input');
|
const inputSlot = this.slots('input');
|
||||||
|
|
||||||
if (inputSlot) {
|
if (inputSlot) {
|
||||||
return <div class={bem('control', this.inputAlign)}>{inputSlot}</div>;
|
return (
|
||||||
|
<div class={bem('control', [this.inputAlign, 'custom'])}>
|
||||||
|
{inputSlot}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const inputProps = {
|
const inputProps = {
|
||||||
|
@ -17,7 +17,6 @@
|
|||||||
&__body {
|
&__body {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
height: 100%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&__control {
|
&__control {
|
||||||
@ -57,6 +56,12 @@
|
|||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&--custom {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
min-height: @cell-line-height;
|
||||||
|
}
|
||||||
|
|
||||||
// for ios wechat
|
// for ios wechat
|
||||||
&[type='date'],
|
&[type='date'],
|
||||||
&[type='time'],
|
&[type='time'],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user