Skip to content

Instantly share code, notes, and snippets.

@RichardLindhout
Created May 27, 2020 19:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RichardLindhout/478ef98b9edbb36bc9b9104f125645a6 to your computer and use it in GitHub Desktop.
Save RichardLindhout/478ef98b9edbb36bc9b9104f125645a6 to your computer and use it in GitHub Desktop.
Make create-react-app error screen react less irritating while developing but still viewable
body > iframe {
left: auto !important;
width: 50px !important;
right: 0 !important;
border-left: 2px solid red !important;
opacity: 0.6 !important;
transition: all 300ms;
}
body > iframe:hover {
width: 50% !important;
opacity: 1 !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment