You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
706 B
42 lines
706 B
.wux-tabbar {
|
|
position: relative;
|
|
z-index: 500;
|
|
width: 100%;
|
|
min-height: 92rpx;
|
|
background-color: #fff;
|
|
box-sizing: border-box
|
|
}
|
|
.wux-tabbar--bottom {
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0
|
|
}
|
|
.wux-tabbar--bottom::after {
|
|
content: " ";
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
right: 0;
|
|
height: 1PX;
|
|
border-top: 1PX solid #d9d9d9;
|
|
color: #d9d9d9;
|
|
transform-origin: 0 0;
|
|
transform: scaleY(.5)
|
|
}
|
|
.wux-tabbar--top {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0
|
|
}
|
|
.wux-tabbar--top::after {
|
|
content: " ";
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
height: 1PX;
|
|
border-bottom: 1PX solid #d9d9d9;
|
|
color: #d9d9d9;
|
|
transform-origin: 0 100%;
|
|
transform: scaleY(.5)
|
|
}
|