Is there any way or any css code that allows me to change every font that appears in the app?
I’m not positive it would work, but maybe try something like this:
body {
font-family: 'Arial', sans-serif;
}
2 Likes
If that doesn’t work, try this
.headlineXLarge {
font-family: "Playfair Display";
}
.headlineLarge {
font-family: "Playfair Display";
}
.headlineMedium {
font-family: "Playfair Display";
}
.headlineSmall {
font-family: "Playfair Display";
}
.headlineXSmall {
font-family: "Playfair Display";
}
.large {
font-family: "Playfair Display";
}
p {
font-family: "Playfair Display";
}
3 Likes
Use the #page-root selector for all in one