Hi all, i’ve been messing with the code of my simple theme and am realizing some edits I made aren’t gracefully carrying over…
one thing that’s happening is a font size i changed looks great on desktop, but way too large on mobile view— Here’s the code I wrote to change the font size of this section; it used to be “$font-size-header * .85”, but i increased that multiplier to make my header bigger:
h2 {
font-size: em(floor($font-size-header * 4));
}
I just don’t know what to add to specify mobile view edits only if I want to make this header smaller on phone-view? thanks in advance for the help:)