Custom CSS: changing font size of lists

How do I increase the font size of lists? Below is the CSS I have.

.retool-widget[class*="text_"] ul{
  font-size: 5em !important;
  color: red;
}

Increasing the font size seems to only shift the alignment of the text to the right.
image

image

Hey @mly!

Happy to help here! It looks like this works if you apply it directly to your list items like this:

.retool-widget[class*="text"] li {
  font-size: 5em !important;
  margin-bottom: .5em !important;
}

This margin is necessary though to keep the lines from running into each other. Custom CSS is typically just a temporary workaround though, would you mind telling me a little more about your use case here?