Skip to content

Commit

Permalink
fixed issue where chrome is unable to render text-indent -99999
Browse files Browse the repository at this point in the history
  • Loading branch information
jackHedaya committed Oct 8, 2018
1 parent 86c4cef commit 71fa21a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/react-burger-menu.js
Expand Up @@ -1286,7 +1286,7 @@ var CrossIcon = function (_Component) {
margin: 0,
padding: 0,
border: 'none',
textIndent: -99999,
textIndent: -9999,
background: 'transparent',
color: 'transparent',
outline: 'none',
Expand Down
2 changes: 1 addition & 1 deletion dist/react-burger-menu.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/CrossIcon.js
Expand Up @@ -65,7 +65,7 @@ var CrossIcon = (function (_Component) {
margin: 0,
padding: 0,
border: 'none',
textIndent: -99999,
textIndent: -9999,
background: 'transparent',
color: 'transparent',
outline: 'none',
Expand Down
2 changes: 1 addition & 1 deletion src/CrossIcon.js
Expand Up @@ -31,7 +31,7 @@ export default class CrossIcon extends Component {
margin: 0,
padding: 0,
border: 'none',
textIndent: -99999,
textIndent: -9999,
background: 'transparent',
color: 'transparent',
outline: 'none',
Expand Down
2 changes: 1 addition & 1 deletion test/CrossIcon.spec.js
Expand Up @@ -132,7 +132,7 @@ describe('CrossIcon component', () => {
margin: 0,
padding: 0,
border: 'none',
textIndent: -99999,
textIndent: -9999,
background: 'transparent',
color: 'transparent',
outline: 'none',
Expand Down

0 comments on commit 71fa21a

Please sign in to comment.