dingdong-mall/style/default.css

23 lines
386 B
CSS
Raw Normal View History

.margin-bottom-with-bar {
2022-04-01 16:54:10 +08:00
margin-bottom: calc(120rpx + env(safe-area-inset-bottom) / 2)
}
.fixed-bottom-bar {
position: fixed !important;
width: 100% !important;
bottom: 0 !important;
margin-bottom: 0 !important;
2022-03-24 17:32:26 +08:00
z-index: 98;
}
.fixed-top-bar {
position: fixed !important;
2022-03-24 17:32:26 +08:00
z-index: 98;
width: 100%;
2022-04-01 16:54:10 +08:00
}
.sticky-bar {
z-index: 10;
position: sticky;
top: 0;
}