Different sized logo in header on password page for Brooklyn Theme

Hello!

My site is https://fableslifestyle.com/password

I would like the “Fables” logo to remain the same size on desktop, but display slightly smaller on mobile. Anyone know how to do this? Thanks in advance!

@llafrance

only screen and (max-width:768px){
.password-page__logo img {
    height: 19px !important;
}
}

Put above css into base.css file(online store-> themes->base.css)

I can’t seem to find base.css under edit code, perhaps it has a different name?

@llafrance Then put that code before closing of tag in theme.liquid file


Over here as shown in below pic

Look at in mobile view:

Hi @llafrance ,

This is Victor from PageFly - Landing Page Builder App.
You can go to Online store => themes => actions => edit code and add this code on file theme.scss.css or timber.scss.css

@media screen and (max-width: 767px){
.password-page__logo img {

    height: 19px !important;

}
}

Hope this answer helps.
Best regards,
Victor | PageFly team

Worked perfect adding to the end of theme.scss.css, thank you!