Update backgroundColor in StackFrameCodeBlock

The change updated the backgroundColor of StackFrameCodeBlock component in redux-devtools-inspector-monitor-trace-tab package to '#e0e0e0'. The new color scheme contributes to improved readability and overall component appearance.
This commit is contained in:
Iliya Brook 2024-03-05 02:20:52 +02:00
parent 43c2b22132
commit c440b02aee

View File

@ -86,7 +86,7 @@ function StackFrameCodeBlock(props: StackFrameCodeBlockPropsType) {
}
// $FlowFixMe
applyStyles(node as HTMLElement, {
backgroundColor: main ? theme.base02 : theme.base01,
backgroundColor: '#e0e0e0',
});
// eslint-disable-next-line
break oLoop;