* feat(Style): add van-safe-area-bottom class * chore: update test cases
19 lines
390 B
Plaintext
19 lines
390 B
Plaintext
@import './var.less';
|
|
|
|
:root {
|
|
--van-action-bar-background-color: @action-bar-background-color;
|
|
--van-action-bar-height: @action-bar-height;
|
|
}
|
|
|
|
.van-action-bar {
|
|
position: fixed;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
box-sizing: content-box;
|
|
height: var(--van-action-bar-height);
|
|
background-color: var(--van-action-bar-background-color);
|
|
}
|