Skip to content

Commit 31bd927

Browse files
authored
Fix max-width for code paths (#1309)
1 parent 908a862 commit 31bd927

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

extensions/ql-vscode/src/remote-queries/view/CodePaths.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ const CodePath = ({
5050
}) => {
5151
return <>
5252
{codeFlow.threadFlows.map((threadFlow, index) =>
53-
<div key={`thread-flow-${index}`}>
53+
<div key={`thread-flow-${index}`} style={{ maxWidth: '55em' }}>
5454
{index !== 0 && <VerticalSpace size={3} />}
5555

56-
<Box display="flex" justifyContent="center" alignItems="center" width="42.5em">
56+
<Box display="flex" justifyContent="center" alignItems="center">
5757
<Box flexGrow={1} p={0} border="none">
5858
<SectionTitle>Step {index + 1}</SectionTitle>
5959
</Box>

0 commit comments

Comments
 (0)