mirror of
https://github.com/lingble/twenty.git
synced 2025-11-01 05:07:56 +00:00
fix: Title overflows in mobile viewport for right drawer (#7311)
## Description - This PR solves the issue #7310
This commit is contained in:
@@ -60,7 +60,7 @@ const StyledTitle = styled.div<{ isMobile: boolean }>`
|
|||||||
font-size: ${({ theme }) => theme.font.size.xl};
|
font-size: ${({ theme }) => theme.font.size.xl};
|
||||||
font-weight: ${({ theme }) => theme.font.weight.semiBold};
|
font-weight: ${({ theme }) => theme.font.weight.semiBold};
|
||||||
justify-content: ${({ isMobile }) => (isMobile ? 'flex-start' : 'center')};
|
justify-content: ${({ isMobile }) => (isMobile ? 'flex-start' : 'center')};
|
||||||
width: ${({ isMobile }) => (isMobile ? '' : '100%')};
|
max-width: 90%;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const StyledAvatarWrapper = styled.div`
|
const StyledAvatarWrapper = styled.div`
|
||||||
|
|||||||
Reference in New Issue
Block a user