Skip to content

Instantly share code, notes, and snippets.

@nhuzaa
Last active February 22, 2018 10:13
Show Gist options
  • Save nhuzaa/dad4a0ae7d97436efc4d4b9a98af8b2a to your computer and use it in GitHub Desktop.
Save nhuzaa/dad4a0ae7d97436efc4d4b9a98af8b2a to your computer and use it in GitHub Desktop.
Fix GitHub red text background on JSX
var errorLine = document.getElementsByClassName("pl-ii");
var i;
for (i = 0; i < errorLine.length; i++) {
errorLine[i].style.backgroundColor = "transparent";
errorLine[i].style.color = "#24292e";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment