Last active
September 12, 2023 08:44
-
-
Save iam-medvedev/2cdf4d78e4cbe41bfefe8804e1697da0 to your computer and use it in GitHub Desktop.
Github dashboard styles (Tampermonkey user script)
This file contains 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
// ==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