Skip to content

Commit cf50b13

Browse files
committed
chore: update editor bg image
1 parent 88084bd commit cf50b13

File tree

3 files changed

+46
-1
lines changed

3 files changed

+46
-1
lines changed
Lines changed: 37 additions & 0 deletions
Loading

packages/frontend/src/components/Editor/index.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,14 @@ export default function Editor(props: EditorProps): React.ReactElement {
162162
}
163163

164164
return (
165-
<Flex w="full" justifyContent="center" overflowX="hidden">
165+
<Flex
166+
w="full"
167+
justifyContent="center"
168+
overflowX="hidden"
169+
backgroundImage="/pipebg.svg"
170+
backgroundRepeat="repeat"
171+
backgroundSize="auto"
172+
>
166173
<StepExecutionsToIncludeProvider value={stepExecutionsToInclude}>
167174
<Flex
168175
{...editorStyles.container}

packages/frontend/src/components/FlowStepGroup/styles.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ export const flowStepGroupStyles = {
44
container: {
55
flexDir: 'column' as FlexProps['flexDir'],
66
alignItems: 'center',
7+
background: 'white',
78
borderWidth: '1px',
89
borderColor: 'base.divider.medium',
910
borderRadius: 'lg',

0 commit comments

Comments
 (0)