I've customized my navigation bar in Bootstrap by increasing the height to 80px when the width is more than 768px. However, I noticed that on mobile devices, the height reverts back to 50px. Can someone guide me on how to adjust the height and center the menu icon based on the new height?
Here's the CSS code snippet I used to change the height:
.navbar {
min-height:80px !important;
}
Any assistance would be greatly appreciated. Thank you!