added padding bottom for iphone x and beyond
This commit is contained in:
		
							parent
							
								
									5ff7377797
								
							
						
					
					
						commit
						67bd82fcea
					
				
					 1 changed files with 3 additions and 1 deletions
				
			
		|  | @ -146,7 +146,9 @@ export default function Shell(props) { | |||
|               <div className="px-4 sm:px-6 md:px-8">{props.children}</div> | ||||
| 
 | ||||
|               {/* show bottom navigation for md and smaller (tablet and phones) */} | ||||
|               <nav className="md:hidden flex fixed bottom-0 bg-white w-full rounded-lg shadow"> | ||||
|               <nav | ||||
|                 style={{ paddingBottom: "env(safe-area-inset-bottom)" }} | ||||
|                 className="md:hidden flex fixed bottom-0 bg-white w-full rounded-lg shadow"> | ||||
|                 {/* note(PeerRich): using flatMap instead of map to remove settings from bottom nav */} | ||||
|                 {navigation.flatMap((item, itemIdx) => | ||||
|                   item.name === "Settings" ? ( | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue
	
	 Peer Richelsen
						Peer Richelsen