File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/threat-composer/src/components/brainstorm/BrainstormBoard Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -243,10 +243,10 @@ const BrainstormBoardInner: FC<{ onNavigateToThreat?: NavigateToThreatHandler }>
243243 paddingBottom : '8px' , // Space for the scrollbar
244244 } } >
245245 < div style = { {
246- display : 'flex ' ,
247- flexDirection : 'row ' ,
246+ display : 'grid ' ,
247+ gridTemplateColumns : 'repeat(auto-fill, minmax(300px, 1fr)) ' ,
248248 gap : '20px' ,
249- width : 'fit-content' , // Allow container to grow based on content
249+ width : '100%' ,
250250 } } >
251251 { columnConfig . map ( column => {
252252 // Show assumptions and mitigations based on individual visibility
@@ -295,4 +295,4 @@ export const BrainstormBoard: FC<BrainstormBoardProps> = ({ onNavigateToThreat }
295295 ) ;
296296} ;
297297
298- export default BrainstormBoard ;
298+ export default BrainstormBoard ;
You can’t perform that action at this time.
0 commit comments