I played around with css code injection
.site-header-content { max-height: 300px!important; }
But this trick doesn’t work.
I played around with css code injection
.site-header-content { max-height: 300px!important; }
But this trick doesn’t work.
Try adding min-height: unset
Thanks for your hint!
I reviewed the css with a web developer tool - I started from the wrong side. min-height is set to a big value. Therefore this value must be overwritten.
.site-header-content { min-height: 320px!important; }
Now the header has a reasonable height:
https://flutterdev.at/