fix: navigation drawer clip while making folder in favorites (#8619)

This commit is contained in:
Harsh Singh
2024-11-26 01:19:22 +05:30
committed by GitHub
parent 2e2b27912b
commit 49526937fa
3 changed files with 20 additions and 5 deletions

View File

@ -44,7 +44,7 @@ const StyledItem = styled.div<{ isNavigationDrawerExpanded: boolean }>`
const StyledItemElementsContainer = styled.span`
align-items: center;
gap: ${({ theme }) => theme.spacing(2)};
display: flex;
width: 100%;
`;
@ -53,6 +53,7 @@ const StyledTextInput = styled.input`
${TEXT_INPUT_STYLE}
margin: 0;
width: 100%;
padding: 0;
`;
export const NavigationDrawerInput = ({
@ -115,7 +116,9 @@ export const NavigationDrawerInput = ({
<StyledItemElementsContainer>
{Icon && (
<Icon
style={{ minWidth: theme.icon.size.md }}
style={{
minWidth: theme.icon.size.md,
}}
size={theme.icon.size.md}
stroke={theme.icon.stroke.md}
color="currentColor"