Skip to content

Commit d8bf408

Browse files
cci: fix wrapping on buttons
1 parent 89f31d1 commit d8bf408

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui/root/DeputyContributionSurveySection.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -890,7 +890,7 @@ export default class DeputyContributionSurveySection implements DeputyUIElement
890890
display: 'flex',
891891
alignContent: 'end',
892892
justifyContent: 'end',
893-
flexWrap: 'wrap',
893+
flexWrap: dangerMode ? 'wrap' : 'nowrap',
894894
maxWidth: '320px'
895895
}}>
896896
{ unwrapWidget( this.closeButton ) }

0 commit comments

Comments
 (0)