1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

小程序:首页按钮功能完成;个人中心、生活物资页框架;体温上报定位权限获取失败提示信息;删除部分无用代码;

This commit is contained in:
2023-03-18 17:52:56 +08:00
parent 94a2dbf26d
commit ee7e2e9acb
33 changed files with 712 additions and 181 deletions

View File

@@ -1 +1,66 @@
/* pages/person/person.wxss */
/* pages/person/person.wxss */
#container {
min-height: 100vh;
width: 100%;
background-color: #F5F5F5;
margin: 0;
padding: 0;
/* padding-top: 20px; */
}
.top-image {
width: 100vw;
height: 250px;
margin-bottom: -102px;
z-index: -100;
/* position: absolute; */
}
.cell-group {
background-color: #FFFFFF;
margin: 0 10px;
padding: 0;
margin-bottom: 20px;
border-radius: 10px;
z-index: 100;
position: relative;
}
.user-profile {
display: grid;
grid-template-columns: 64px 1fr;
padding: 12px 20px;
place-items: center;
gap: 25px;
}
.user-profile .avatar-selector {
width: 64px;
height: 64px;
margin: 0;
padding: 0;
}
.user-profile .avatar {
width: 64px;
height: 64px;
}
.user-profile .nickname {
font-size: 18px;
}
.cell-item {
height: 48px;
line-height: 48px;
padding: 0 20px;
font-size: 18px;
}
.cell-sept {
border-bottom: 1px rgb(170, 170, 170) solid;
}
.cell:nth-last-child(1) .cell-sept {
display: none;
}