36 lines
559 B
Plaintext
36 lines
559 B
Plaintext
/* pages/my/publish.wxss */
|
|
.tab-wrap{
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
background: #fff;
|
|
font-size: 30rpx;
|
|
color: #333333;
|
|
}
|
|
.tab-con{
|
|
margin-left: 50rpx;
|
|
padding: 13rpx;
|
|
}
|
|
.tab-wrap text{
|
|
display: inline-block;
|
|
position: relative;
|
|
margin-right: 120rpx;
|
|
}
|
|
.tab-active{
|
|
color: #3D98FF;
|
|
}
|
|
.tab-active::after{
|
|
content: "";
|
|
position: absolute;
|
|
width: 25rpx;
|
|
height: 7rpx;
|
|
background: #3D98FF;
|
|
border-radius: 5px;
|
|
bottom: -12rpx;
|
|
left: 50%;
|
|
margin-left: -12.5rpx;
|
|
}
|
|
.pub-container{
|
|
padding-top: 72rpx;
|
|
} |