Files
vant/src/action-bar/index.less
T
neverlandandGitHub eaccf2db0f feat(Style): add van-safe-area-bottom util class (#9205)
* feat(Style): add van-safe-area-bottom class

* chore: update test cases
2021-08-08 09:08:23 +08:00

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);
}