botframework-webchat-component
Version:
React component of botframework-webchat
30 lines (24 loc) • 567 B
JavaScript
/* eslint no-magic-numbers: "off" */
export default function createTextContentStyle({ bubbleMaxWidth, bubbleMinHeight, primaryFont, paddingRegular }) {
return {
fontFamily: primaryFont,
margin: 0,
minHeight: bubbleMinHeight - paddingRegular * 2,
padding: paddingRegular,
'& > :first-child': {
marginTop: 0
},
'& > :last-child': {
marginBottom: 0
},
'&.markdown': {
'& img': {
maxWidth: bubbleMaxWidth,
width: '100%'
},
'& pre': {
overflow: 'hidden'
}
}
};
}