How do I increase the navbar height to accommodate a taller logo?

I made this modification to the CSS:

.logo-small, .logo-big {
  max-height: 100px !important;
  margin-top:-8px;
}

That increased the size of the logo, but now the logo is too big for the navbar. How can I increase the height of the navbar to accomodate the logo?

Try

.d-header {
    height: 120px;
}
5 Likes

That did it! Thank you!