Skip to content

Commit 70a91c7

Browse files
committed
fix(design): 학교 인증 태그 원상 복귀 git add .git add .git add .git add .
1 parent 009cd8c commit 70a91c7

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/common/components/SchoolVerifiedTag/style.css.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ export const Container = css({
1010
display: 'flex',
1111
alignItems: 'center',
1212
gap: '0.22rem',
13+
borderRadius: '0.25rem',
14+
backgroundColor: 'main-26',
1315
'& > p': {
1416
color: '100',
1517
},

src/features/detail/components/UserInfo/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const UserInfo = ({ userData, itemId, isLiked }: Props) => {
1818
<div className={s.UserInfo}>
1919
<img className={s.ProfileImage} src={userData.profileImageUrl} alt={userData.nickname} />
2020
<div className={s.UserInfoText({ isVerified: userData.isKoreanUnivVerified })}>
21-
{userData.isKoreanUnivVerified && <SchoolVerifiedTag />}
21+
{<SchoolVerifiedTag />}
2222
<p>{userData.nickname}</p>
2323
</div>
2424
</div>

0 commit comments

Comments
 (0)