feat(drawerPrimary): set width 300-320px@@ -166,7 +166,7 @@ const StyledDrawerPrimary = styled.aside<
WithThemeSchemeProp & { color?: string }
>`
${({ themeScheme }) => css`
- min-width: 230px;
+ min-width: 300px;
max-width: 320px;
height: 100vh;
@@ -217,7 +217,7 @@ const StyledChildrenWrapper = styled.div<{ showDrawerPrimary?: boolean }>`
${({ showDrawerPrimary = false }) =>
showDrawerPrimary &&
css`
- max-width: calc(100% - 230px);
+ max-width: calc(100% - 300px);
`};
@media only screen and (max-width: 768px) {