Skip to content

Commit

Permalink
마이페이지 미반영된 디자인을 대응한다. (SWYP-team-2th#169)
Browse files Browse the repository at this point in the history
* 마이페이지 프로필 중앙 정렬

* 아이콘 사이즈 160px -> 120px
  • Loading branch information
YOOJS1205 committed Mar 2, 2025
1 parent e8e2079 commit 99d6f8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/my/Profile/Profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default function Profile() {
const { userInfo } = useProfile();

return (
<div className="flex gap-6">
<div className="flex gap-6 items-center">
<img
src={userInfo.profileUrl}
className="w-24 h-24 rounded-full object-cover aspect-square"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function MyVoteList() {
if (myVoteList.length === 0) {
return (
<div className="w-full h-full flex flex-col items-center justify-center">
<img src={EmptyMyVote} width={160} height={160} />
<img src={EmptyMyVote} width={120} height={120} />
<div className="flex flex-col gap-2 justify-between items-center break-keep text-center">
<p className="text-h3">아직 올린 투표가 없어요!</p>
<p className="text-title-small text-gray-700">
Expand Down

0 comments on commit 99d6f8c

Please sign in to comment.