I have created my toolbar:
<header className='toolbar'>
<nav className='toolbar_navigation'>
///hamburger:
<SideDrawer drawerClicked = {props.drawerClicked} />
///LOGO
<div className='toolbar_logo'>MYCOOKIES</div>
</nav>
</header>
This is the styling I applied:
.toolbar {
position: fixed;
width:100%;
top:0;
left:0;
height: 60px;
border-bottom: 1px solid #E4E7ED;
background-color: white;
}
.toolbar_navigation {
display: flex;
height: 100%;
padding-left: 18px;
justify-content: space-between;
align-items: center;
}
.toolbar_logo{
color:#bfa290;
text-decoration: none;
font-family: 'Segoe UI';
font-weight: 510;
margin-right: 115px;
cursor: pointer;
font-size: 25px;
}
However, when I view it on mobile phones such as iphone 6 and iphone 5, the layout appears differently. Here are some examples: iPhone 6: http://prntscr.com/sujtsb iPhone 5: http://prntscr.com/suju09 Can anyone advise me on why this is happening and how to fix it? Any help would be greatly appreciated!