Prestige theme, make the header thinner without affecting the logo on mobile

Hi! I can’t figure out how to make the header thinner on mobile devices without also making the logo smaller.. I am using the prestige theme.

Any help would be appreciated!

My store url is dreampilloww.se

@media screen and (max-width: 640px){
.Header__LogoImage {
    max-width: 68px;
}
}

Add this in theme.scss

hello @dilara1

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

@media screen and (max-width: 640px){
.Header__LogoImage {
    max-width: 70px;
}
}

thanks but i fixed it!