In the wicked-pdf report, I have body content with varying font sizes.
When I apply a font-size of 16px to the paragraph like so:
p {
font-size: 16px !important;
}
The entire paragraph's font size becomes 16px, which may include words with different font sizes such as 22px. In such cases, I need to adjust the font size back to their original values.
For instance,
If a word has a font size of 16px, then I want to increase it to 17px; if it's 22px, then I should bump it up to 23px in my pdf report.
Basically, I want to increment or adjust the font sizes slightly to return them closer to their normal sizes in the pdf report.