We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 284a454 commit f04ce88Copy full SHA for f04ce88
src/components/base/HeaderLogo.tsx
@@ -37,7 +37,7 @@ const HeaderLogo: React.FC<HeaderLogoProps> = ({
37
<VelogIcon />
38
</VelogLogoLink>
39
<VLink to={velogPath} className="user-logo">
40
- {userLogo.title || createFallbackTitle(username)}
+ <span>{userLogo.title || createFallbackTitle(username)}</span>
41
</VLink>
42
</HeaderLogoBlock>
43
);
@@ -69,7 +69,7 @@ const HeaderLogoBlock = styled.div`
69
70
.user-logo {
71
display: block;
72
- max-width: calc(100vw - 200px);
+ max-width: calc(100vw - 250px);
73
${ellipsis};
74
}
75
`;
0 commit comments