Welcome Banner shows on desktop but not on mobile

Correct, as Nate says, it’s by design.

It’s only gated by CSS however, so you can easily adapt it by overruling:

@media (width < 40rem) {
    .welcome-banner {
        /* display: none; */
    }
}

to display: block for mobile.