样式修改

This commit is contained in:
linfeng 2022-12-11 13:04:18 +08:00
parent 7ff65ba2cc
commit 3b6ebbba9b

View File

@ -27,7 +27,7 @@
shape="circle" size="mini"> shape="circle" size="mini">
<text>已关注</text> <text>已关注</text>
</u-button> </u-button>
<u-button @click="" :custom-style="btnStyle2" <u-button :custom-style="btnStyle2"
shape="circle" size="mini"> shape="circle" size="mini">
<text style="margin: 0 15rpx;">私信</text> <text style="margin: 0 15rpx;">私信</text>
</u-button> </u-button>
@ -36,6 +36,7 @@
</view> </view>
<!-- 帖子 --> <!-- 帖子 -->
<view> <view>
<view class="title-desc">发布的动态</view>
<post-list :list="postList" :loadStatus="loadStatus"></post-list> <post-list :list="postList" :loadStatus="loadStatus"></post-list>
</view> </view>
</view> </view>
@ -190,8 +191,8 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
position: relative; // position: relative;
height: 500rpx; // height: 500rpx;
} }
.avatar { .avatar {
@ -284,6 +285,11 @@
margin-right: 10rpx; margin-right: 10rpx;
} }
} }
.title-desc{
margin-left: 30rpx;
font-size: 28rpx;
color: #565656;
font-weight: 300;
}
</style> </style>