XF 2.0 reduce header height

can you try messing around with this code, see if it helps?
extra.less
Code:
.p-header-logo.p-header-logo--image img {
margin-top: -8px;
margin-bottom: 0px;
}
you could add your logo image size to max width and height with this code to.
Code:
.p-header-logo.p-header-logo--image img {

max-width: 0px;
max-height: 0px;
margin-top: -8px;
margin-bottom: 0px;
}
 
Top Bottom