mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
44 lines
693 B
Plaintext
44 lines
693 B
Plaintext
@import '../style/var';
|
|
|
|
.van-contact-list {
|
|
box-sizing: border-box;
|
|
height: 100%;
|
|
padding-bottom: 50px;
|
|
|
|
&__item {
|
|
padding: @contact-list-item-padding;
|
|
}
|
|
|
|
&__item-value {
|
|
padding-right: 34px;
|
|
}
|
|
|
|
&__group {
|
|
box-sizing: border-box;
|
|
height: 100%;
|
|
overflow-y: scroll;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
&__name {
|
|
font-weight: 500;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
}
|
|
|
|
&__edit {
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 15px;
|
|
font-size: @contact-list-edit-icon-size;
|
|
transform: translate(0, -50%);
|
|
}
|
|
|
|
&__add {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: @contact-list-add-button-z-index;
|
|
}
|
|
}
|