Why can't I scroll down my drop down menu?

Hi!

I was wondering how to make sure my drop down menu can scroll down?

Here’s a picture of my issue:

the website is: https://goldstar3343.myshopify.com/

there is no password!

Thanks so much for your help,

Phae

@heyitsphae
Hello,

#HeaderMenu-MenuList-3 {
min-width: 360px;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->base.scss.liquid

Like This

Hi @heyitsphae ,

Go to Assets > base.css and paste this at the bottom of the file:

.header__inline-menu .header__submenu {
    overflow: auto;
    height: 80vh;
}

Hope it helps!