Skip to content

Instantly share code, notes, and snippets.

@noahlearner
Last active May 8, 2021 17:07
Show Gist options
  • Save noahlearner/7def6cc7eb86f37a07e84e43f8976524 to your computer and use it in GitHub Desktop.
Save noahlearner/7def6cc7eb86f37a07e84e43f8976524 to your computer and use it in GitHub Desktop.
javascript: (function(){var styles = '::-webkit-scrollbar-thumb:hover { background: #eee; }';styles += '::-webkit-scrollbar-thumb { background: #eee; min-height: 50px; }';styles += '::-webkit-scrollbar-track { background: #111; }';styles += '::-webkit-scrollbar { width: 15px; }';var css = document.createElement('style'); css.type = 'text/css'; if (css.styleSheet) css.styleSheet.cssText = styles; else css.appendChild(document.createTextNode(styles));document.getElementsByTagName("head")[0].appendChild(css); }());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment