fix(GoodsActionButton): fix style error in single action button (#2808)

fix #2786
This commit is contained in:
rex 2020-03-02 14:49:24 +08:00 committed by GitHub
parent 9f8fe59650
commit bf287502e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,10 @@
}
.van-goods-action-button {
.theme(--button-warning-background-color, '@goods-action-button-warning-color');
.theme(
--button-warning-background-color,
'@goods-action-button-warning-color'
);
.theme(--button-danger-background-color, '@goods-action-button-danger-color');
.theme(--button-default-height, '@goods-action-button-height');
.theme(--button-line-height, '@goods-action-button-height');
@ -33,6 +36,10 @@
);
}
&--first&--last {
.theme(--button-border-radius, '@goods-action-button-border-radius');
}
&--plain {
--button-border-width: @button-border-width;
}