diff --git a/app/src/components/Sidebar/ValueRenderer.tsx b/app/src/components/Sidebar/ValueRenderer.tsx index 6afa0bf..6a88fd7 100644 --- a/app/src/components/Sidebar/ValueRenderer.tsx +++ b/app/src/components/Sidebar/ValueRenderer.tsx @@ -12,7 +12,7 @@ interface Props { class ValueRenderer extends React.Component { public render() { - return
{this.renderValue()}
+ return
{this.renderValue()}
} public renderValue() { @@ -49,13 +49,13 @@ class ValueRenderer extends React.Component { private renderRawValue(value: string) { const style: React.CSSProperties = { - backgroundColor: 'rgba(80, 80, 80, 0.6)', + padding: '8px 12px 8px 12px', + backgroundColor: 'rgba(100, 100, 100, 0.55)', wordBreak: 'break-all', width: '100%', overflow: 'auto hidden', display: 'block', lineHeight: '1.2em', - padding: '12px 5px 12px 5px', color: this.props.theme.palette.text.primary, }