mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	feat: fixed full mode navbar width (#7999)
This commit is contained in:
		
							parent
							
								
									3d22f6e909
								
							
						
					
					
						commit
						bed4f66fa2
					
				| @ -41,7 +41,8 @@ export const MobileNavigationSidebar: FC<{ onClick: () => void }> = ({ | ||||
|     ); | ||||
| }; | ||||
| 
 | ||||
| export const StretchContainer = styled(Box)(({ theme }) => ({ | ||||
| export const StretchContainer = styled(Box)<{ mode: string }>( | ||||
|     ({ theme, mode }) => ({ | ||||
|         backgroundColor: theme.palette.background.paper, | ||||
|         padding: theme.spacing(2), | ||||
|         alignSelf: 'stretch', | ||||
| @ -50,8 +51,9 @@ export const StretchContainer = styled(Box)(({ theme }) => ({ | ||||
|         gap: theme.spacing(2), | ||||
|         zIndex: 1, | ||||
|         overflowAnchor: 'none', | ||||
|     maxWidth: theme.spacing(40), | ||||
| })); | ||||
|         width: mode === 'full' ? theme.spacing(40) : 'auto', | ||||
|     }), | ||||
| ); | ||||
| 
 | ||||
| // This component is needed when the sticky item could overlap with nav items. You can replicate it on a short screen.
 | ||||
| const StickyContainer = styled(Box)(({ theme }) => ({ | ||||
| @ -83,7 +85,7 @@ export const NavigationSidebar = () => { | ||||
|     }, [initialPathname]); | ||||
| 
 | ||||
|     return ( | ||||
|         <StretchContainer> | ||||
|         <StretchContainer mode={mode}> | ||||
|             <PrimaryNavigationList | ||||
|                 mode={mode} | ||||
|                 onClick={setActiveItem} | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user