Merge pull request '修改主播专属下载页文案和头像比例' (#23) from feat-20240118 into main

Reviewed-on: https://git.wishpal.cn/wishpal_ironfan/tiefen_space_web/pulls/23
This commit is contained in:
yezian 2024-01-31 18:23:08 +08:00
commit 68956075e0
1 changed files with 8 additions and 6 deletions

View File

@ -184,11 +184,13 @@ export default function Download({ params }) {
)} )}
</div> </div>
<div className="flex flex-row items-center bg-[#13121F] w-full fixed bottom-0 left-0 rounded-t-2xl p-4"> <div className="flex flex-row items-center bg-[#13121F] w-full fixed bottom-0 left-0 rounded-t-2xl p-4">
<img <div className="w-12 h-12 rounded-full overflow-hidden">
src={data?.cover?.images[0].urls[0]} <img
alt="" src={data?.cover?.images[0].urls[0]}
className="w-12 h-12 rounded-full" alt=""
/> className="w-full object-cover"
/>
</div>
<div className="flex flex-col flex-1 ml-4"> <div className="flex flex-col flex-1 ml-4">
<p className="text-white text-base font-medium flex items-center"> <p className="text-white text-base font-medium flex items-center">
{data?.name}&nbsp;&nbsp; {data?.name}&nbsp;&nbsp;
@ -197,7 +199,7 @@ export default function Download({ params }) {
</span> </span>
</p> </p>
<p className="text-secondary text-sm font-medium"> <p className="text-secondary text-sm font-medium">
铁粉空间查看我的更多超顶动态 铁粉空间查看我的更多精选内容
</p> </p>
</div> </div>
</div> </div>