Suppression de l'en-tête de marque par CSS dans le chat en taille complète, mais le chat plein écran n'est pas obtenu

My goal I am trying to achieve is to hide brand header when users are in full-size chat.

I manage to remove it by the following CSS:

body.has-full-page-chat {
    header.b-header{
        display:none;
    }
    .ember-application .d-header {
        margin-top: 0;
    }
}

The problem is that I get bar at the bottom with the same height as brand-header.

My guess is that some height-calculation doesn’t consider the removed brand-header. If I reload page it works fine.

Any pointers? :heart:

1 « J'aime »