Skip to content

Commit f04ce88

Browse files
committed
fix: header custom logo style
1 parent 284a454 commit f04ce88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/base/HeaderLogo.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const HeaderLogo: React.FC<HeaderLogoProps> = ({
3737
<VelogIcon />
3838
</VelogLogoLink>
3939
<VLink to={velogPath} className="user-logo">
40-
{userLogo.title || createFallbackTitle(username)}
40+
<span>{userLogo.title || createFallbackTitle(username)}</span>
4141
</VLink>
4242
</HeaderLogoBlock>
4343
);
@@ -69,7 +69,7 @@ const HeaderLogoBlock = styled.div`
6969
7070
.user-logo {
7171
display: block;
72-
max-width: calc(100vw - 200px);
72+
max-width: calc(100vw - 250px);
7373
${ellipsis};
7474
}
7575
`;

0 commit comments

Comments
 (0)