Add logo to mobile nav bar
You will need to adjust the height and width (background size and width/height should match each other) depending on the shape of your logo. You may also need to adjust the top margin.
If your logo is long, this may not work well. My advice is to create a secondary logo. For example, Coca-Cola has their long script logo of their name. That’s too long for this. But, they also have a Coke bottle logo. That would work great. Usually your fav icon is square and so that’s an option.
@media (max-width: 767px) {
.Navigation.ButtonGroup.App-backControl::after {
background-image: url('/logo.png');
background-size: 35px 35px;
display: inline-block;
width: 35px;
height: 35px;
margin-top: 5px;
content:"";
}
}