Skip to content

Commit e4a3ac9

Browse files
committed
fix width of feedback form
1 parent 79085cf commit e4a3ac9

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed
-29 Bytes
Loading
-32 Bytes
Loading

packages/component/src/Styles/StyleSet/FeedbackForm.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ export default function createFeedbackFormStyle() {
55
'&.webchat__feedback-form__root-container': {
66
display: 'flex',
77
flexDirection: 'column',
8-
gap: '8px'
8+
gap: '8px',
9+
width: 'inherit'
910
},
1011
'.webchat__feedback-form__root-child': {
1112
display: 'flex'

packages/component/src/Styles/StyleSet/TextContent.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ export default function createTextContentStyle() {
3131
'& .webchat__text-content__activity-actions': {
3232
alignSelf: 'flex-start',
3333
display: 'flex',
34-
gap: `calc(${CSSTokens.PaddingRegular} / 2)`
34+
gap: `calc(${CSSTokens.PaddingRegular} / 2)`,
35+
width: '100%'
3536
},
3637

3738
'& .webchat__text-content__activity-actions:empty': {

0 commit comments

Comments
 (0)