How can I remove extra padding from my mobile nav menu?

Hi,

We seem to have some extra padding above our mobile nav menu. Any idea how to get rid of this?

Website is https://shopcestmimi.com/

@PamelaL17 , do this to fix it in 20 seconds:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset > theme.scss.liquid or theme.css and paste this at the bottom of the file:
.mobile-nav-wrapper{
    min-height: unset !important;
    max-height: 60vh !important;
}

Please let me know whether it works.

Kind regards,
Diego

Please add below code in below of assets/theme.css file

.mobile-nav-wrapper {

height: auto;

min-height: auto;

}

hii, @PamelaL17
Paste this code on top of the theme.scss file.

ul#MobileNav {
    margin-top: -195px !important;
}

Thank You.