mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-26 13:42:44 +03:00
fix: Title overflows in mobile viewport for right drawer (#7311)
## Description - This PR solves the issue #7310
This commit is contained in:
parent
1e4ed1e96f
commit
95e1053b7a
@ -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`
|
||||
|
Loading…
Reference in New Issue
Block a user