From 2d98b5b36c65635e341eee293a0246a14a12ab10 Mon Sep 17 00:00:00 2001 From: Tore Brede <Tore.Brede@uib.no> Date: Wed, 13 Oct 2021 16:55:26 +0200 Subject: [PATCH] Fixing wrong colour used in sumamry step --- frontend/src/routes/register/stepSummary.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/routes/register/stepSummary.tsx b/frontend/src/routes/register/stepSummary.tsx index 9d38d285..831a7a38 100644 --- a/frontend/src/routes/register/stepSummary.tsx +++ b/frontend/src/routes/register/stepSummary.tsx @@ -52,7 +52,7 @@ const StepSummary = forwardRef((props: StepSummaryProperties) => { typography: 'subtitle2', marginBottom: '0.5rem', paddingLeft: '0.5rem', - bgcolor: 'primary.dark', + bgcolor: 'primary.light', }}>{t('registerWizardText.contactInformation')}</Box> <Grid sx={{ typography: 'body2', paddingLeft: '0.5rem' }} container> @@ -80,7 +80,7 @@ const StepSummary = forwardRef((props: StepSummaryProperties) => { <Table> <TableHead sx={{ paddingLeft: '0.5rem', - bgcolor: 'primary.dark', + bgcolor: 'primary.light', }}> <TableRow> -- GitLab