2022-11-27 23:54:26 +08:00

63 lines
988 B
Plaintext

/**global style**/
image{
max-width: 100%;
max-height: 100%;
}
/**app.wxss**/
@content-widht:90%;
.content-container{
width: @content-widht;
margin: auto;
}
.user-info {
.header {
background-color: #ceb17f;
color: white;
width: 100%;
padding: 30px 0;
.content-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.user-info {
display: flex;
align-items: center;
}
.user-avatar-wrapper {
width: 60px;
height: 60px;
border-radius: 50%;
display: inline-block;
overflow: hidden;
}
.nickname {
margin-left: 10px;
font-size: 20px;
}
.user-avatar {
width: 100%;
height: 100%;
display: block;
}
}
}
// 列表样式
.list{
background-color: white;
.list-title{}
.list-items{}
.item{
display: flex;
}
}
button[disabled],
button[aria-disabled=true]{
background-color: rgb(78, 61, 61);
}