We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 908a862 commit 31bd927Copy full SHA for 31bd927
1 file changed
extensions/ql-vscode/src/remote-queries/view/CodePaths.tsx
@@ -50,10 +50,10 @@ const CodePath = ({
50
}) => {
51
return <>
52
{codeFlow.threadFlows.map((threadFlow, index) =>
53
- <div key={`thread-flow-${index}`}>
+ <div key={`thread-flow-${index}`} style={{ maxWidth: '55em' }}>
54
{index !== 0 && <VerticalSpace size={3} />}
55
56
- <Box display="flex" justifyContent="center" alignItems="center" width="42.5em">
+ <Box display="flex" justifyContent="center" alignItems="center">
57
<Box flexGrow={1} p={0} border="none">
58
<SectionTitle>Step {index + 1}</SectionTitle>
59
</Box>
0 commit comments