41 lines
726 B
Plaintext
41 lines
726 B
Plaintext
.tab-bar {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 58px;
|
|
background: white;
|
|
display: flex;
|
|
padding-bottom: env(safe-area-inset-bottom);
|
|
z-index: 10000;
|
|
}
|
|
|
|
.tab-bar-border {
|
|
box-shadow: 0.05rem 0.05rem 0.05rem 0 #f2f2f2;
|
|
border-top: solid .05rem #f2f2f2;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 1px;
|
|
transform: scaleY(0.5);
|
|
}
|
|
|
|
.tab-bar-item {
|
|
flex: 1;
|
|
text-align: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.tab-bar-item .cover-image {
|
|
width: 50rpx;
|
|
height: 50rpx;
|
|
}
|
|
|
|
.tab-bar-item .cover-view {
|
|
margin-top: 8rpx;
|
|
font-size: 24rpx;
|
|
} |