From c91f346e26c8457d5db237c6e7e51d36e00fba8d Mon Sep 17 00:00:00 2001 From: rex Date: Fri, 1 May 2020 15:35:49 +0800 Subject: [PATCH] refactor(submit-bar): implement safe-area-inset-bottom with another view fix #3080 --- packages/submit-bar/index.less | 8 ++++---- packages/submit-bar/index.wxml | 4 +++- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/packages/submit-bar/index.less b/packages/submit-bar/index.less index 44584a1f..d578335c 100644 --- a/packages/submit-bar/index.less +++ b/packages/submit-bar/index.less @@ -44,11 +44,11 @@ .theme(height, '@submit-bar-height'); .theme(font-size, '@submit-bar-text-font-size'); .theme(background-color, '@submit-bar-background-color'); + } - &--safe { - padding-bottom: constant(safe-area-inset-bottom); - padding-bottom: env(safe-area-inset-bottom); - } + &__safe { + height: constant(safe-area-inset-bottom); + height: env(safe-area-inset-bottom); } &__text { diff --git a/packages/submit-bar/index.wxml b/packages/submit-bar/index.wxml index 7a623f70..a56dd46c 100644 --- a/packages/submit-bar/index.wxml +++ b/packages/submit-bar/index.wxml @@ -16,7 +16,7 @@ - + {{ label || '合计:' }} @@ -39,4 +39,6 @@ {{ loading ? '' : buttonText }} + +