Skip to content

Instantly share code, notes, and snippets.

@iam-medvedev
Last active September 12, 2023 08:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iam-medvedev/2cdf4d78e4cbe41bfefe8804e1697da0 to your computer and use it in GitHub Desktop.
Save iam-medvedev/2cdf4d78e4cbe41bfefe8804e1697da0 to your computer and use it in GitHub Desktop.
Github dashboard styles (Tampermonkey user script)
// ==UserScript==
// @name Github dashboard styles
// @version 0.1
// @description Github dashboard styles
// @match https://github.com/dashboard-feed
// @icon https://www.google.com/s2/favicons?sz=64&domain=github.com
// @grant GM_addStyle
// ==/UserScript==
(function() {
const css = `.application-main { max-width: 676px; margin: 0 auto; }`;
GM_addStyle(css);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment