You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
889 B
Plaintext
51 lines
889 B
Plaintext
|
2 years ago
|
/* pages/mine/index.wxss */
|
||
|
|
.container {
|
||
|
|
padding: 10px;
|
||
|
|
height: 100vh;
|
||
|
|
}
|
||
|
|
.infoBox {
|
||
|
|
padding: 14px 10px;
|
||
|
|
border-radius: 8px;
|
||
|
|
background-color: #fff;
|
||
|
|
}
|
||
|
|
.userImg {
|
||
|
|
border-radius: 50%;
|
||
|
|
width: 56px;
|
||
|
|
height: 56px;
|
||
|
|
}
|
||
|
|
.my-project {
|
||
|
|
border-radius: 8px;
|
||
|
|
background-color: #fff;
|
||
|
|
margin-top: 10px;
|
||
|
|
padding: 16px;
|
||
|
|
}
|
||
|
|
.my-project .my-project-title {
|
||
|
|
line-height: 22px;
|
||
|
|
}
|
||
|
|
.my-project .switch {
|
||
|
|
width: 48px;
|
||
|
|
height: 20px;
|
||
|
|
border-radius: 10px;
|
||
|
|
background-color: #d7f3f3;
|
||
|
|
color: #00bebe;
|
||
|
|
font-size: 11px;
|
||
|
|
line-height: 20px;
|
||
|
|
}
|
||
|
|
.my-project .my-project-title::before {
|
||
|
|
content: "";
|
||
|
|
width: 3px;
|
||
|
|
height: 15px;
|
||
|
|
background: #00bebe;
|
||
|
|
/* border: 1px solid #00bebe; */
|
||
|
|
border-radius: 2px;
|
||
|
|
margin-right: 8px;
|
||
|
|
/* transform: translateY(2px); */
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
.my-project .my-project-body {
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
padding: 0 28px;
|
||
|
|
margin-top: 16px;
|
||
|
|
}
|