From b8e4efddce6bcc4fb482867ef05248a1c4e9dafe Mon Sep 17 00:00:00 2001 From: Rohan Agarwal <47861399+roaga@users.noreply.github.com> Date: Mon, 28 Oct 2024 15:21:01 -0700 Subject: [PATCH] fix(autofix): Change color to fix dark mode (#79871) The message box was hardcoded as white. Change it to use a background color from the theme so it adapts to dark mode. --- static/app/components/events/autofix/autofixMessageBox.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/app/components/events/autofix/autofixMessageBox.tsx b/static/app/components/events/autofix/autofixMessageBox.tsx index bb499f35d5a368..891d45a5dc79c9 100644 --- a/static/app/components/events/autofix/autofixMessageBox.tsx +++ b/static/app/components/events/autofix/autofixMessageBox.tsx @@ -481,7 +481,7 @@ const Container = styled('div')` bottom: 0; left: 0; right: 0; - background: white; + background: ${p => p.theme.backgroundElevated}; z-index: 100; border-top: 1px solid ${p => p.theme.border}; box-shadow: ${p => p.theme.dropShadowHeavy};