Created
May 27, 2020 19:36
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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