1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| @import '../style/var';
|
| .van-goods-action {
| position: fixed;
| right: 0;
| bottom: 0;
| left: 0;
| display: flex;
| align-items: center;
| box-sizing: content-box;
| height: @goods-action-height;
| padding-bottom: constant(safe-area-inset-bottom);
| padding-bottom: env(safe-area-inset-bottom);
| background-color: @goods-action-background-color;
|
| &--unfit {
| padding-bottom: 0;
| }
| }
|
|