meetfranz / recipe-whatsapp

Official Franz Recipe for WhatsApp
6 stars 25 forks source link

Not running in fullscreen anymore #12

Closed rojosinalma closed 3 years ago

rojosinalma commented 4 years ago

For a couple of days now, the whatsapp web service is not running using the whole screen like it used to be. I need to zoom in a couple of times to make it look like it's using the whole window, but having it zoomed it like that is kinda weird.

Did something change either in this recipe or whatsapp web? Anybody knows what I can do to fix it?

rojosinalma commented 4 years ago

ping @adlk

rojosinalma commented 4 years ago

I found that changing the injected CSS to this fixes the issue:

.h70RQ.two {
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
}
Letrab commented 3 years ago

Adding this to user.css works for me (go to Settings of Whatsapp and scroll down, to open user.css)

.two {
    width: 100vw !important;
    height: 100vh !important;
    top: 0 !important;
}