1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-27 13:49:10 +02:00

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 <andreas@getunleash.ai>
Co-authored-by: andreas-unleash <andreas@getunleash.ai>
This commit is contained in:
David Leek 2024-04-09 10:04:36 +02:00 committed by GitHub
parent d8724dc97d
commit e51aeaf2b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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,