From 695749b7cc416414a7920e3db6fa11b3caa8f822 Mon Sep 17 00:00:00 2001 From: neverland Date: Fri, 15 Feb 2019 20:16:48 +0800 Subject: [PATCH] [bugfix] ActionSheet: cancel button height (#1311) --- packages/action-sheet/index.less | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/packages/action-sheet/index.less b/packages/action-sheet/index.less index b14ed88f..419183fc 100644 --- a/packages/action-sheet/index.less +++ b/packages/action-sheet/index.less @@ -4,17 +4,6 @@ max-height: 90% !important; color: @text-color; - &__cancel { - height: 60px; - - &::before { - display: block; - height: 10px; - background-color: @background-color; - content: ' '; - } - } - &__item, &__cancel { height: 50px; @@ -28,6 +17,17 @@ } } + &__cancel { + height: 60px; + + &::before { + display: block; + height: 10px; + background-color: @background-color; + content: ' '; + } + } + &__item--disabled { color: @gray; }