Is it possible to style border corners in the Microsoft bot framework? I've attempted the following:
const styleSet = window.WebChat.createStyleSet({
botAvatarImage: '/assets/logo.png',
bubbleBackground: '#9b9c94',
bubbleBorderTopLeftRadius:'20px',
bubbleFromUserBackground: '#38b349',
backgroundColor: 'white',
});
Despite trying this code, I haven't achieved the desired result. I'm unsure if this feature is not supported by the Web chat window or if I am implementing it incorrectly. My goal is to round three corners of my chat box without affecting the fourth corner. While I know borderRadius works for other styling purposes, I can't understand why this specific scenario isn't working.