The update don't fix that problem. But if anyone have the problem also and is using SVG Images as Logo - here is a solution to have control over the header height and the logo height:
Don't insert a logo and header height on the basic settings. Instead insert this part of media querries to your custom css file and define it like you need it. You are also able to add more breakpoints if needed.
@media (max-width: 9999px) {
#sp-header {height:100px;}
.logo-image {height:80px;}
}
@media (max-width: 991px) {
#sp-header {height:100px;}
.logo-image {height:80px;}
}
@media (max-width: 575px) {
#sp-header {height:60px;}
.logo-image {height:50px;}
}
UPDATE: sorry found the viewport options just in time - it is also possible to change this on the template settings....