Skip to content

Instantly share code, notes, and snippets.

@robdmc
Last active August 7, 2019 14:59
Show Gist options
  • Select an option

  • Save robdmc/19ca8892137a1eab7fd2e7c61b8fa7bb to your computer and use it in GitHub Desktop.

Select an option

Save robdmc/19ca8892137a1eab7fd2e7c61b8fa7bb to your computer and use it in GitHub Desktop.
Make Jupyter Notebooks be full width
/**************************************************/
/**** 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