Text style in Bubble's previewMessage
Is there a way to control the text style in the previewMessage for a Bubble? I would like to bold the text in the previewMessage. Thanks, John

2 Replies
You should be able to customize its CSS
typebot-bubble::part(preview-message) {
...
}
@Baptiste Thank you. I tried adding it to the Theme's Custom CSS. It did not change anything. Is that where I should add it?
I fingured it out. I put the style adjacent to the script code on the web page for the Bubble.
<style>typebot-bubble::part(preview-message) {
font-weight: bold;
} </style>