How can I decrease padding in the Flow theme dropdown menu?

Hi! I have the Flow theme and on the drop down menu there is too much space in between each category, so my categories don’t fit and I can’t see them all. It’s something I have to do by code, but I can’t fin where to add it correctly. Does anyb

Hello,
Add this css at the bottom of
Online Store->Theme->Edit code->Assets->theme-index.min.css

@media only screen and (min-width: 750px){
#AccessibleNav .site-nav__link {
    padding-top: 5px;
    padding-bottom: 5px;
}
}

Thank you so much!! Incredible helpful!! I was trying to solve this for a long time now, thank you!! :slightly_smiling_face: