Skip to content

Commit

Permalink
fix(autofix): Change color to fix dark mode (#79871)
Browse files Browse the repository at this point in the history
The message box was hardcoded as white. Change it to use a background
color from the theme so it adapts to dark mode.
  • Loading branch information
roaga authored Oct 28, 2024
1 parent 0e81905 commit b8e4efd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/app/components/events/autofix/autofixMessageBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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};
Expand Down

0 comments on commit b8e4efd

Please sign in to comment.