I am using web chat v4, I have created one dropdown there user can select font size/font weight for her/his convenience. I can't achieve two things.
Can't change font size/font weight/font family for adaptive card/hero card/other attachments
Can't change font family
I am currently using jquery to perform button click change using id "webchat".Code is below. Similarly for font-weight, Help me achieve the two thing I mentioned.
function font_size() {
var e = document.getElementById("sizeselect");
var value = e.options[e.selectedIndex].value;
document.getElementById("webchat").style.fontSize = value;
}