Setting for changing the font size of all elements

It would be great to have this option right in the settings. As for now the Support Team suggests using the code below in the Custom CSS section on the Settings tab os fthe widget’s settings:

/*title */
[class*="WidgetTitle__Header-sc"] {
  font-size: 40px;
}

/*caption*/

[class*="WidgetTitle__Caption-sc"] {
  font-size: 20px;
}

/*Email placeholder */

[class*="TextControlBase__TextControlBasePlaceholder-sc"] {
  font-size: 20px;
}

/*Spin Now button */

.es-button-base-ellipsis {
  font-size: 20px;
}

/*No, thank you button */

[class*="content__Decline-sc"] {
  font-size: 18px;
}

/*footer */

[class*="content__Disclaimer-sc"] {
  font-size: 15px;
}

/*prize text */

[class*="sector__Label-sc"] {
  font-size: 15px;
}
1 Like