Text font size in css
Summary
I can get label font size in css but can't seem to find the keyword for text fontsizeContent
I'm new to VBCS.
I need to reduce font-size to fit content in a busy panel. In the panel declaration, I've added prescriptionInfo to the class attributes
<div class="oj-panel oj-flex-items-pad oj-flex-item oj-sm-4 prescriptionInfo" id="div--159186858-4">
In app.css I've added the following:
.prescriptionInfo label{
color:blue;
font-size: 10px;
}
This has the desired affect of changing the labels to blue and 10px height.
I need to do the same for the text fields but not finding the right keyword. I figured since within the panel's list view the labels are <oj-label and referencing label in css was the correct choice that I would use bind-data in the css to change the font-size of the text, but it doesn't work.
0