Skip to content

Instantly share code, notes, and snippets.

@Dayjo
Created October 30, 2013 21:33
Show Gist options
  • Save Dayjo/7240690 to your computer and use it in GitHub Desktop.
Save Dayjo/7240690 to your computer and use it in GitHub Desktop.
Make Netflix have proper horizontal scrolling for touch mice (no slow marquee or arrows). Infinite scrolling not yet implemented, maybe with a Tampermonkey script.
/*
* Netflix proper horizontal scrolling.
* Add this to your css browser extension like Stylish (for Chrome)
*/
.slider {
overflow-x: auto;
}
.slider .previous, .slider .next {
display: none !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment