Compare commits

..

No commits in common. "84bc1c6fbcfa1c470011c3dab96ad87d437cfa25" and "2b300b83a46ebf783c9ebf0c32ba2123b69f621a" have entirely different histories.

4 changed files with 6 additions and 34 deletions

View File

@ -32,10 +32,6 @@ view.card {
0 0.3px 0.9px 0 rgba(0, 0, 0, .05); 0 0.3px 0.9px 0 rgba(0, 0, 0, .05);
} }
image {
filter: $black-filter;
}
// 顶部导航栏阴影 // 顶部导航栏阴影
view.top-shadow { view.top-shadow {
position: fixed; position: fixed;
@ -81,10 +77,6 @@ view.h3 {
background-color: $theme-color-dark-layout; background-color: $theme-color-dark-layout;
} }
image {
filter: $white-filter;
}
view.h1 { view.h1 {
color: $theme-color-dark-title; color: $theme-color-dark-title;
font-size: 1.2em; font-size: 1.2em;

View File

@ -1,7 +1,3 @@
@import "./UserCard.scss"; @import "./UserCard.scss";
@import "./MainFunction.scss"; @import "./MainFunction.scss";
@import "./FunctionList.scss"; @import "./FunctionList.scss";
view.container {
padding-top: 20px;
}

View File

@ -11,12 +11,6 @@
<open-data type="userAvatarUrl" /> <open-data type="userAvatarUrl" />
</view> </view>
<view class="info"> <view class="info">
<!-- 主题变换按钮 -->
<view class="theme">
<image src="../../image/account/Account_Theme.svg" />
</view>
<view class="nick h1"> <view class="nick h1">
<open-data type="userNickName" /> <open-data type="userNickName" />
</view> </view>

View File

@ -2,33 +2,23 @@
// 用户卡片 // 用户卡片
view.user-card { view.user-card {
margin-top: 20px;
height: 100px;
display: flex; display: flex;
align-items: center;
padding-top: 20px; padding-top: 20px;
padding-bottom: 20px; padding-bottom: 20px;
view.avatar { view.avatar {
width: 70px; width: 80px;
height: 70px; height: 80px;
border-radius: 1000px; border-radius: 1000px;
overflow: hidden; overflow: hidden;
} }
view.info { view.info {
flex-grow: 1; width: calc(100% - 80px - 20px);
padding-left: 20px; padding-left: 20px;
view.theme {
width: 100%;
display: flex;
justify-content: flex-end;
image {
width: 25px;
height: 25px;
}
}
view.nick { view.nick {
margin: 4px 0; margin: 4px 0;
} }