mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	fix: flex layout used the wrong axes for layout. (#7696)
This change fixes an issue where the flex layouts for collaborator info used the wrong axes for layout (row instead of column and vice versa), causing the component to look wonky. Before:  After: 
This commit is contained in:
		
							parent
							
								
									344e599b09
								
							
						
					
					
						commit
						08aba91832
					
				@ -13,7 +13,7 @@ const StyledAvatar = styled(UserAvatar)(({ theme }) => ({
 | 
			
		||||
 | 
			
		||||
const SectionContainer = styled('div')(({ theme }) => ({
 | 
			
		||||
    display: 'flex',
 | 
			
		||||
    flexFlow: 'row',
 | 
			
		||||
    flexFlow: 'column',
 | 
			
		||||
    gap: theme.spacing(0.5),
 | 
			
		||||
    alignItems: 'flex-start',
 | 
			
		||||
    height: 'min-content',
 | 
			
		||||
@ -21,7 +21,7 @@ const SectionContainer = styled('div')(({ theme }) => ({
 | 
			
		||||
 | 
			
		||||
const LastModifiedByAvatarAndLink = styled('div')(({ theme }) => ({
 | 
			
		||||
    display: 'flex',
 | 
			
		||||
    flexFlow: 'column',
 | 
			
		||||
    flexFlow: 'row',
 | 
			
		||||
    gap: theme.spacing(1),
 | 
			
		||||
}));
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user