From e51aeaf2b1b585c50b2002578333f712f9d5d2bc Mon Sep 17 00:00:00 2001 From: David Leek Date: Tue, 9 Apr 2024 10:04:36 +0200 Subject: [PATCH] fix: dark mode background (#6803) (#6804) ## About the changes Pulls in dark mode fix for strategy constraint legal values background from PR #6803 to be released in 5.11.1 Signed-off-by: andreas-unleash Co-authored-by: andreas-unleash --- .../LegalValueLabel/LegalValueLabel.styles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/component/common/NewConstraintAccordion/ConstraintAccordionEdit/ConstraintAccordionEditBody/LegalValueLabel/LegalValueLabel.styles.ts b/frontend/src/component/common/NewConstraintAccordion/ConstraintAccordionEdit/ConstraintAccordionEditBody/LegalValueLabel/LegalValueLabel.styles.ts index f4d58d2c0f..0d13b14055 100644 --- a/frontend/src/component/common/NewConstraintAccordion/ConstraintAccordionEdit/ConstraintAccordionEditBody/LegalValueLabel/LegalValueLabel.styles.ts +++ b/frontend/src/component/common/NewConstraintAccordion/ConstraintAccordionEdit/ConstraintAccordionEditBody/LegalValueLabel/LegalValueLabel.styles.ts @@ -4,7 +4,7 @@ export const StyledContainer = styled('div')(({ theme }) => ({ display: 'inline-block', wordBreak: 'break-word', padding: theme.spacing(0.5, 1), - background: theme.palette.common.white, + background: theme.palette.background.paper, border: `1px solid ${theme.palette.divider}`, borderRadius: theme.shape.borderRadius,