mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
* perf: remove CSS variables polyfill * style: fix missing calc value * perf: reduce some useless css vars
22 lines
463 B
Plaintext
22 lines
463 B
Plaintext
@import '../common/style/var.less';
|
|
|
|
.van-goods-action {
|
|
position: fixed;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
box-sizing: content-box;
|
|
height: var(--goods-action-height, @goods-action-height);
|
|
background-color: var(
|
|
--goods-action-background-color,
|
|
@goods-action-background-color
|
|
);
|
|
|
|
&--safe {
|
|
padding-bottom: constant(safe-area-inset-bottom);
|
|
padding-bottom: env(safe-area-inset-bottom);
|
|
}
|
|
}
|