I've been grappling with the most effective method for resizing text on mobile devices. According to the documentation, adjusting text size responsively is a relatively simple process. Just add the is-size-*-mobile
class to an element and set the text size to value *
(1-7) for mobile screens. However, I'm unsure of which elements are ideal for this purpose. For instance, I aim to have all text displayed at size 7 on mobile, but I find myself adding the is-size-7-mobile
class to nearly every text container on the page. While achievable, this approach seems counterintuitive to the purpose of having such a CSS class available.
I would greatly appreciate any advice or suggestions regarding this matter.