When my app is in full screen mode, I need to increase the font size for certain components. Within my App.jsx file, I have a variable that adds the "fullscreen" class to the root DIV of the app when triggered. Instead of using a blanket approach like * { font-size: 18px; }
, I want to selectively override specific classes (e.g.
.some-class * { font-size: 18px; }
). However, React hashing complicates this process. Therefore, my question is: How can I apply my desired font size to all components within the app?