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