43 lines
679 B
Plaintext
43 lines
679 B
Plaintext
/**app.wxss**/
|
|
@import "/styles/iconfont.wxss";
|
|
|
|
.container {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 200rpx 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.empty-data {
|
|
font-size: 16px;
|
|
color: #5f5f5f;
|
|
text-align: center;
|
|
justify-self: center;
|
|
align-self: center;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
|
|
.wx-switch-input {
|
|
width: 90rpx !important;
|
|
height: 48rpx !important;
|
|
}
|
|
|
|
/* false的样式 */
|
|
.wx-switch-input::before {
|
|
width: 100rpx !important;
|
|
height: 40rpx !important;
|
|
}
|
|
|
|
/* true的样式 */
|
|
.wx-switch-input::after {
|
|
width: 40rpx !important;
|
|
height: 40rpx !important;
|
|
} |