Skip to content

Commit

Permalink
Merge pull request #485 from us3r-network/F-navLogoHeight-ttang
Browse files Browse the repository at this point in the history
feat: nav logo height dynamic
  • Loading branch information
Tonyce authored Jan 24, 2024
2 parents e357e5b + 5b34f76 commit abee51d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/u3/src/components/layout/menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ const MenuWrapper = styled.div<{ isOpen: boolean }>`
`;
const LogoBox = styled.div<{ onlyIcon?: boolean }>`
width: ${({ onlyIcon }) => (onlyIcon ? '36px' : '142px')};
height: 94px;
height: ${({ onlyIcon }) => (onlyIcon ? '194px' : '94px')};
display: flex;
flex-direction: ${({ onlyIcon }) => (onlyIcon ? 'column' : 'row')};
gap: ${({ onlyIcon }) => (onlyIcon ? '4px' : '10px')};
Expand Down

0 comments on commit abee51d

Please sign in to comment.