Skip to content

Commit

Permalink
fix(components, protocol-designer): fix background color in file crea…
Browse files Browse the repository at this point in the history
…tion

Update background color in new protocol wizard from grey20 to grey10

Closes RQA-3361
  • Loading branch information
ncdiehl11 committed Nov 15, 2024
1 parent 112ea83 commit 2acd33c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/src/organisms/EndUserAgreementFooter/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const EULA_URL = 'https://opentrons.com/eula'
export function EndUserAgreementFooter(): JSX.Element {
return (
<Flex
backgroundColor={COLORS.grey20}
backgroundColor={COLORS.grey10}
padding={SPACING.spacing24}
width="100%"
alignItems={ALIGN_CENTER}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ export function CreateNewProtocolWizard(): JSX.Element | null {
}

return showWizard ? (
<Box backgroundColor={COLORS.grey20} height="calc(100vh - 48px)">
<Box backgroundColor={COLORS.grey10} height="calc(100vh - 48px)">
<CreateFileForm
currentWizardStep={currentWizardStep}
createProtocolFile={createProtocolFile}
Expand Down
2 changes: 1 addition & 1 deletion protocol-designer/src/pages/Landing/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export function Landing(): JSX.Element {
) : null}
<Flex
data-cy="landing-page"
backgroundColor={COLORS.grey20}
backgroundColor={COLORS.grey10}
flexDirection={DIRECTION_COLUMN}
alignItems={ALIGN_CENTER}
justifyContent={JUSTIFY_CENTER}
Expand Down

0 comments on commit 2acd33c

Please sign in to comment.