Skip to content

Commit 40c25ad

Browse files
committed
chore: replace svg with bg dotted pattern
1 parent 7a148a4 commit 40c25ad

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

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

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,15 @@ 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+
sx={{
170+
backgroundImage: 'radial-gradient(#f5f5f5 3px, transparent 3px)',
171+
backgroundSize: '30px 30px',
172+
}}
173+
>
166174
<StepExecutionsToIncludeProvider value={stepExecutionsToInclude}>
167175
<Flex
168176
{...editorStyles.container}

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export const flowStepGroupStyles = {
88
borderColor: 'base.divider.medium',
99
borderRadius: 'lg',
1010
borderTopRadius: 'lg',
11+
bg: 'white',
1112
},
1213

1314
header: {

0 commit comments

Comments
 (0)