1
This commit is contained in:
@@ -2,11 +2,18 @@
|
||||
|
||||
// 个人页面样式
|
||||
.download_bill_page {
|
||||
min-height: 100vh;
|
||||
height: 100vh;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
overflow-y: auto;
|
||||
box-sizing: border-box;
|
||||
|
||||
&::-webkit-scrollbar {
|
||||
display: none;
|
||||
width: 0;
|
||||
height: 0;
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
.custom-navbar {
|
||||
height: 56px;
|
||||
/* 通常与原生导航栏高度一致 */
|
||||
|
||||
@@ -125,7 +125,6 @@
|
||||
flex: 1;
|
||||
margin-top: 98px;
|
||||
box-sizing: border-box;
|
||||
overflow-y: auto;
|
||||
padding: 0px 16px;
|
||||
padding-bottom: 48px;
|
||||
|
||||
|
||||
@@ -1,9 +1,11 @@
|
||||
// 球友关注页面样式
|
||||
.follow_page {
|
||||
min-height: 100vh;
|
||||
height: 100vh;
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background-color: #FAFAFA;
|
||||
overflow: hidden;
|
||||
|
||||
// 导航栏内容
|
||||
.navbar_content {
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
// 他人用户页面样式
|
||||
.other_user_page {
|
||||
min-height: 100vh;
|
||||
height: 100vh;
|
||||
position: relative;
|
||||
// overflow: hidden;
|
||||
overflow-y: auto;
|
||||
box-sizing: border-box;
|
||||
background: radial-gradient(
|
||||
circle at 50% 0,
|
||||
@@ -12,6 +12,13 @@
|
||||
/* 到 200px 变成白色 */ #fafafa 100% /* 200px 以下全白 */
|
||||
);
|
||||
|
||||
&::-webkit-scrollbar {
|
||||
display: none;
|
||||
width: 0;
|
||||
height: 0;
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
// 导航栏内容
|
||||
.navbar_content {
|
||||
display: flex;
|
||||
@@ -64,9 +71,8 @@
|
||||
position: relative;
|
||||
z-index: 5;
|
||||
flex: 1;
|
||||
margin-top: 11px;
|
||||
margin-top: 0;
|
||||
box-sizing: border-box;
|
||||
overflow-y: auto;
|
||||
padding-bottom: 15px;
|
||||
|
||||
// 用户信息区域
|
||||
|
||||
@@ -237,7 +237,10 @@ const OtherUserPage: React.FC = () => {
|
||||
}}
|
||||
/>
|
||||
{/* 主要内容 */}
|
||||
<View className="other_main_content">
|
||||
<View
|
||||
className="other_main_content"
|
||||
style={{ paddingTop: `${totalHeight}px` }}
|
||||
>
|
||||
{/* 用户信息区域 */}
|
||||
<View className="user_info_section">
|
||||
<UserInfoCard
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
// @use '../../scss/common.scss' as *;
|
||||
|
||||
.wallet_page {
|
||||
min-height: 100vh;
|
||||
height: 100vh;
|
||||
overflow-y: auto;
|
||||
background-color: #f5f5f5;
|
||||
padding-bottom: 5px;
|
||||
box-sizing: border-box;
|
||||
@@ -10,6 +11,7 @@
|
||||
display: none;
|
||||
width: 0;
|
||||
height: 0;
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
.custom-navbar {
|
||||
|
||||
Reference in New Issue
Block a user