I want the font size of an admonition (e.g. an “i” note) to be smaller than the size of body. That can be achieved by setting the size with .is-paragraph
. However, that also affects the font size of text created with a soft return below a bullet point. I want the soft return text to be the same size as the main text size.
Just put both classes in the css rule, e.g.:
.admonitionblock .is-paragraph {
font-size: 8px;
}
Yes, that is exactly what I was looking for. Many thanks!!