Last active
August 7, 2019 14:59
-
-
Save robdmc/19ca8892137a1eab7fd2e7c61b8fa7bb to your computer and use it in GitHub Desktop.
Make Jupyter Notebooks be full width
This file contains hidden or 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
| /**************************************************/ | |
| /**** put this in ~/.jupyter/custom/custom.css ****/ | |
| /**************************************************/ | |
| /* Make the notebook cells take almost all available width */ | |
| .container { | |
| width: 99% !important; | |
| } | |
| /* Prevent the edit cell highlight box from getting clipped; | |
| * important so that it also works when cell is in edit mode*/ | |
| div.cell.selected { | |
| border-left-width: 1px !important; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment