Increase font size in Card Widget Helical Insight 5.0

Hello Team,
I want to increase the font size of text in card widget of Helical Insight 5.0. Please suggest how to do this ?

Thank you,
Netta.

Hello Netta,

You can do this easily by applying CSS at report/dashboard level. It is always advisable to apply CSS at the dashboard level. Below is the CSS to increase the size of text :

<Component-ID>
{
.ant-typography{
 
font-size:20px !important;  //this applied font-size for card widget title
 
}
.ant-statistic-content-value span{
 
font-size:30px !important;  //this applied font-size for card widget value
 
}
}

In case of componentID, you should put the componentId of that component. You can get that information by at report level by going to Operations and then CSS (like shown below). If you have applied at the report level, wherever you use this panel that kind of look and feel and styling will continue.
image

If you want to apply at the dashboard level only it is possible to get, by right clicking on that component, going to CSS
image

image

You can append the component id so that it affects only that card and not all.

Thank you,
Helical Insight.