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

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`