mini/app.wxss
2025-04-13 01:27:54 +08:00

49 lines
908 B
Plaintext

@import './assets/icon.wxss';
page{
--main-color:#FF2727;
--main-bgclolor:#ffffff;
--safe-bottom:constant(safe-area-inset-bottom);
--safe-bottom:env(safe-area-inset-bottom);
background-color: var(--main-bgclolor);
font-size: 30rpx;
color: #333333;
line-height: 1;
height: 100vw;
overflow: hidden;
}
button{
border-radius: 40rpx;
background-color: #000;
color: #fff;
margin:0;
transition-duration: .4s;
}
button[type=primary]{
background-color: #000;
width: auto;
}
button.button-hover{
background-color: #000!important;
opacity: .8;
}
button.icon-button{
width:60rpx;height:60rpx;
padding:0;
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
font-size: 40rpx;
}
.custom-scroll-view{
height:100vh;
display:flex;
flex-direction: column;
box-sizing: border-box;
}
.custom-scroll-view .main{
overflow: hidden;
flex:1;
}