Skip to content

Instantly share code, notes, and snippets.

@binki
Last active August 15, 2016 15:16
Show Gist options
  • Save binki/4670369c632218ba40ae456d0ba21643 to your computer and use it in GitHub Desktop.
Save binki/4670369c632218ba40ae456d0ba21643 to your computer and use it in GitHub Desktop.
Fix GitHub requiring horitontal scrolling/not being fluid
@namespace url(http://www.w3.org/1999/xhtml);
/*
* With this style, github README pages become fluid and no longer
* require horizontal scrolling to read: http://imgur.com/pyruCm0
*
* Without, lots of annoying horizontal scrolling: http://imgur.com/wofNtra
*/
@-moz-document domain("github.com") {
body {
min-width: auto;
}
.container {
width: auto;
}
.discussion-sidebar.js-sticky {
/* Override ridiculous sticky thing which renders over stuff. */
position: static !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment