How can I reduce the header size in Taste theme?

Hi, I’d like to decrease the size of a header by the blue line
Link on my store - https://steppedonabee.myshopify.com/

Thanks a lot

Hi @alyaska1717
You can try follow this path:
Themes => edit code => asset => base.css
and add this code to bottom of the file base.css

@media screen and (min-width: 990px) {
.header {
  padding-top: 0;
  padding-bottom: 0;
}
}

Thanks a lot my friend!