Skip to content

Commit dcb5f4c

Browse files
authored
fix(components, protocol-designer): fix background color in file creation (#16854)
Update background color in new protocol wizard from grey20 to grey10 Closes RQA-3361
1 parent 548ed2c commit dcb5f4c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

components/src/organisms/EndUserAgreementFooter/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const EULA_URL = 'https://opentrons.com/eula'
1414
export function EndUserAgreementFooter(): JSX.Element {
1515
return (
1616
<Flex
17-
backgroundColor={COLORS.grey20}
17+
backgroundColor={COLORS.grey10}
1818
padding={SPACING.spacing24}
1919
width="100%"
2020
alignItems={ALIGN_CENTER}

protocol-designer/src/pages/CreateNewProtocolWizard/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ export function CreateNewProtocolWizard(): JSX.Element | null {
373373
}
374374

375375
return showWizard ? (
376-
<Box backgroundColor={COLORS.grey20} height="calc(100vh - 48px)">
376+
<Box backgroundColor={COLORS.grey10} height="calc(100vh - 48px)">
377377
<CreateFileForm
378378
currentWizardStep={currentWizardStep}
379379
createProtocolFile={createProtocolFile}

protocol-designer/src/pages/Landing/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export function Landing(): JSX.Element {
9595
) : null}
9696
<Flex
9797
data-cy="landing-page"
98-
backgroundColor={COLORS.grey20}
98+
backgroundColor={COLORS.grey10}
9999
flexDirection={DIRECTION_COLUMN}
100100
alignItems={ALIGN_CENTER}
101101
justifyContent={JUSTIFY_CENTER}

0 commit comments

Comments
 (0)