Skip to content

Commit

Permalink
feat(groupviewexplorecard.jsx): decrease font size for group card
Browse files Browse the repository at this point in the history
  • Loading branch information
junglesub committed Aug 6, 2024
1 parent c3d11ab commit 9e337df
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion src/components/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,12 @@ function Header({ loggedIn = false, ...props }) {
return (
<HeaderComp ref={headerRef} {...props}>
<HeaderCompContent>
<HeaderImage src={loggedIn ? headerLogoBlue : headerLogo} />
<HeaderImage
src={loggedIn ? headerLogoBlue : headerLogo}
onClick={() => {
navigate(loggedIn ? "/mypage" : "/");
}}
/>
<HeaderMenus>
<HeaderMenuBtn>ABOUT US</HeaderMenuBtn>
{jwtValue ? (
Expand Down Expand Up @@ -120,6 +125,7 @@ const HeaderImage = styled.img`
max-width: 68px;
padding-left: 25px;
width: 9.067vw;
cursor: pointer;
`;

const HeaderMenus = styled.div`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ const Footer = {
${pretendard}
font-style: normal;
font-weight: 600;
font-size: 36px;
line-height: 43px;
font-size: 24px;
/* line-height: 43px; */
/* identical to box height */
text-transform: uppercase;
Expand Down

0 comments on commit 9e337df

Please sign in to comment.