Skip to content

Commit 52a1559

Browse files
authored
Merge pull request #38 from dbassett17/fix-truncation
Address aggressive truncation in Scope panel
2 parents d3f0022 + 4742dc7 commit 52a1559

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/createFormatters.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
const listStyle = {style: 'list-style-type: none; padding: 0; margin: 0 0 0 12px; font-style: normal'};
2-
const immutableNameStyle = {style: 'color: rgb(232,98,0)'};
1+
const listStyle = {style: 'list-style-type: none; padding: 0; margin: 0 0 0 12px; font-style: normal; position: relative'};
2+
const immutableNameStyle = {style: 'color: rgb(232,98,0); position: relative'};
33
const keyStyle = {style: 'color: #881391'};
44
const defaultValueKeyStyle = {style: 'color: #777'};
55
const alteredValueKeyStyle = {style: 'color: #881391; font-weight: bolder'};
6-
const inlineValuesStyle = {style: 'color: #777; font-style: italic'}
6+
const inlineValuesStyle = {style: 'color: #777; font-style: italic; position: relative'}
77
const nullStyle = {style: 'color: #777'};
88

99
export default function createFormatter(Immutable) {

0 commit comments

Comments
 (0)