Headline theme: where does max-height comes from?

Hi, I download the headline theme. I ran gulp with hot-fix so any change I make it creates a new build.
In the file /assets/css/screen.css there is no declaration
max-height: 40px;

Yet when I inspect the logo in the browser, max-height is set up to 40px. Where is that max-height coming from? I search through out the theme and I can’t find it.

Any ideas?

Thanks

It’s part of shared theme assets, which are located here:

Your best bet, though, is to just add CSS to your theme/code injection that overwrites the selector with the value you want:

.gh-head-log img {
    max-height: my new value!
}
1 Like