style(ContactList): add safe area inset bottom (#6970)

This commit is contained in:
neverland 2020-08-10 11:21:53 +08:00 committed by GitHub
parent f9a7da54c5
commit c2a3f6411e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 5 deletions

View File

@ -21,7 +21,6 @@
&__add {
height: 40px;
margin: 5px 0;
line-height: 38px;
}
&__disabled-text {

View File

@ -3,7 +3,7 @@
.van-contact-list {
box-sizing: border-box;
height: 100%;
padding-bottom: 50px;
padding-bottom: 80px;
&__item {
padding: @contact-list-item-padding;
@ -41,12 +41,14 @@
bottom: 0;
left: 0;
z-index: @contact-list-add-button-z-index;
padding: 5px 16px;
padding: 0 @padding-md;
padding-bottom: constant(safe-area-inset-bottom);
padding-bottom: env(safe-area-inset-bottom);
background-color: @white;
}
&__add {
height: 40px;
line-height: 38px;
margin: 5px 0;
}
}

View File

@ -99,7 +99,7 @@
@address-edit-detail-finish-font-size: @font-size-sm;
// AddressList
@address-list-padding: 12px 12px 100px;
@address-list-padding: @padding-sm @padding-sm 80px;
@address-list-disabled-text-color: @gray-6;
@address-list-disabled-text-padding: @padding-base * 5 0 @padding-md;
@address-list-disabled-text-font-size: @font-size-md;