Fix size of single media in media-gallery (#5098)
This commit is contained in:
		
							parent
							
								
									510df0ac55
								
							
						
					
					
						commit
						259181c41a
					
				
					 1 changed files with 1 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -161,10 +161,8 @@ class Item extends React.PureComponent {
 | 
			
		|||
      );
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    const style = standalone ? {} : { left, top, right, bottom, width: `${width}%`, height: `${height}%` };
 | 
			
		||||
 | 
			
		||||
    return (
 | 
			
		||||
      <div className={classNames('media-gallery__item', { standalone })} key={attachment.get('id')} style={style}>
 | 
			
		||||
      <div className={classNames('media-gallery__item', { standalone })} key={attachment.get('id')} style={{ left: left, top: top, right: right, bottom: bottom, width: `${width}%`, height: `${height}%` }}>
 | 
			
		||||
        {thumbnail}
 | 
			
		||||
      </div>
 | 
			
		||||
    );
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue