How add customClass ?
calonzolg opened this issue · 1 comments
calonzolg commented
polonel commented
The customClass is targeted for the snacker container. Which means you can use the customClass on the container to target the child element you wish you change. You may have to append the css !important
tag.
So in your case you could target the p
element with...
.myCustomClass p {
font-weight: bold !important;
}