Skip to content

Commit

Permalink
fix: Title overflows in mobile viewport for right drawer (twentyhq#7311)
Browse files Browse the repository at this point in the history
## Description

- This PR solves the issue twentyhq#7310
  • Loading branch information
harshit078 committed Oct 14, 2024
1 parent 1ff2d33 commit e883663
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const StyledTitle = styled.div<{ isMobile: boolean }>`
font-size: ${({ theme }) => theme.font.size.xl};
font-weight: ${({ theme }) => theme.font.weight.semiBold};
justify-content: ${({ isMobile }) => (isMobile ? 'flex-start' : 'center')};
width: ${({ isMobile }) => (isMobile ? '' : '100%')};
max-width: 90%;
`;

const StyledAvatarWrapper = styled.div`
Expand Down

0 comments on commit e883663

Please sign in to comment.