BrodyStone21 Could someone share the CSS code snippet required to change the text color in the header on mobile? I’ve changed it on desktop, but it’s not right on mobile. I’m referring to the text directly in the middle of the header.
treyb BrodyStone21 Give this one a shot @media (max-width: 767.98px) { .App-titleControl>.Button { color: white !important; }
BrodyStone21 treyb Oshvam This covers everything but the notifications tab on mobile. How can I change that?
Oshvam You may want to try this, it works well and instead of limiting by resolution, it limits by device. @media @phone { Your CSS rules }