feat: 更新页面样式

master
xjs 2025-04-29 18:01:23 +08:00
parent edfc853931
commit 1270723821
1 changed files with 113 additions and 111 deletions

View File

@ -52,6 +52,8 @@ export default function AntechamberWishList() {
}; };
return ( return (
<>
{wishList.length > 0 ? (
<div className="w-full p-[15px]"> <div className="w-full p-[15px]">
<div className="px-[12px] pt-[14px] pb-[16px] rounded-[13px] bg-[#fff]"> <div className="px-[12px] pt-[14px] pb-[16px] rounded-[13px] bg-[#fff]">
<div className="flex items-center justify-between"> <div className="flex items-center justify-between">
@ -132,7 +134,6 @@ export default function AntechamberWishList() {
</Drawer> </Drawer>
</div> </div>
{wishList.length > 0 ? (
<div className="p-[7px] rounded-[8px] bg-[#F4F6FA] flex items-center mt-[12px]"> <div className="p-[7px] rounded-[8px] bg-[#F4F6FA] flex items-center mt-[12px]">
<img <img
src="/icons/wish-list-icon.png" src="/icons/wish-list-icon.png"
@ -165,10 +166,11 @@ export default function AntechamberWishList() {
<img src="/icons/rightBlue.png" alt="" className="ml-[2px]" /> <img src="/icons/rightBlue.png" alt="" className="ml-[2px]" />
</div> </div>
</div> </div>
</div>
</div>
) : ( ) : (
<></> <></>
)} )}
</div> </>
</div>
); );
} }