fix: Title overflows in mobile viewport for right drawer (#7311)

## Description

- This PR solves the issue #7310
This commit is contained in:
Harshit Singh 2024-09-30 15:43:33 +05:30 committed by GitHub
parent 1e4ed1e96f
commit 95e1053b7a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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`