Increase Icon size in Perspective

I’m using a checkbox with an icon, I’ve increased the font size for the text in the checkbox but the icon itself is incredibly small. Is there a way to increase the icon size as well?

As always any help is greatly appreciated, Thank you!

You can access global css file in ignition/data/modules/ folder and use css to target the component and
change size by using transform scale property.

Or just put it on embedded view and add zoom: 2 property for root style. This scale every thing. The 2th approach is not recommend because of slow loading of embedded view.

1 Like

Sounds good, Thank you my friend!