Last active
August 15, 2016 15:16
-
-
Save binki/4670369c632218ba40ae456d0ba21643 to your computer and use it in GitHub Desktop.
Fix GitHub requiring horitontal scrolling/not being fluid
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
@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