I’ve googled and searched the community and I’ve figured out how to change most of the text I want except the Meta / Emphasis text. Honestly, it’s too small to read and is placed in an obnoxious place in my card view, but I prefer this view. Can someone tell me easily how to change that in CSS?
For me, the easiest way is to do it via inspector. Here’s how I found this in the Title component. But many of these classes with random letter names are not stable, which means your design can fall apart if you change the theme color. So, make sure you’ll stick to your main app color before you start changing CSS like this.
h3[class*="metaText"] {
font-size: 1rem !important;
}
You can find the stable part of it and then apply class*, just be careful it might change stuff in other components as well if they have the same part in their class names.