This commit is contained in:
2025-11-22 15:46:23 +08:00
parent b2b665dfb6
commit cba231ab3d
11 changed files with 197 additions and 127 deletions

View File

@@ -1,13 +1,17 @@
// 编辑资料页面样式
.edit_profile_page {
height: 100vh; // position: relative;
background: radial-gradient(
circle at 50% 0,
/* 光晕圆心在顶部中间 */ rgba(191, 255, 239, 0.9) 0px,
/* 中间更深的浅蓝 */ rgba(191, 255, 239, 0.5) 200px,
/* 100px 处开始淡化 */ #fafafa 300px,
/* 到 200px 变成白色 */ #fafafa 100% /* 200px 以下全白 */
);
background: radial-gradient(circle at 50% 0,
/* 光晕圆心在顶部中间 */
rgba(191, 255, 239, 0.9) 0px,
/* 中间更深的浅蓝 */
rgba(191, 255, 239, 0.5) 200px,
/* 100px 处开始淡化 */
#fafafa 300px,
/* 到 200px 变成白色 */
#fafafa 100%
/* 200px 以下全白 */
);
position: relative;
// overflow: hidden;
box-sizing: border-box;
@@ -52,7 +56,7 @@
display: flex;
justify-content: center;
& > .detail-navigator-back-icon {
&>.detail-navigator-back-icon {
width: 32px;
height: 32px;
}
@@ -341,6 +345,31 @@
font-size: 16px;
line-height: 1.4em;
color: #000000;
&.close_account {
color: #fe3c31;
}
}
}
&.group {
border: 1px solid rgba(0, 0, 0, 0.12);
border-radius: 16px;
overflow: hidden;
.logout_button {
border: unset;
border-radius: unset;
Image {
width: 20px;
height: 20px;
margin-right: 12px;
}
&:first-child {
border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
}
}
}
@@ -360,4 +389,4 @@
color: rgba(0, 0, 0, 0.6);
}
}
}
}