Skip to content

Commit 996fd36

Browse files
committed
🎨Design: 프로필 아바타 배경색 변경
1 parent 143b509 commit 996fd36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Profile/styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ type ProfileProps = {
99
export const Profile = styled.div<ProfileProps>`
1010
width: ${({ $size }) => $size + 'px'};
1111
height: ${({ $size }) => $size + 'px'};
12-
background: url(${({ $src }) => $src}) center/cover ${({ theme }) => theme.colors.brand.sub};
12+
background: url(${({ $src }) => $src}) center/cover ${({ theme }) => theme.colors.brand.lighten_2};
1313
cursor: ${({ $userId }) => ($userId ? 'pointer' : 'default')};
1414
border-radius: 50%;
1515
`

0 commit comments

Comments
 (0)