Created
June 5, 2018 00:08
-
-
Save stilliard/6ca6abea982262b3e457102ec69c968d to your computer and use it in GitHub Desktop.
Slightly decrease widths of github project board columns
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 Decrease GitHub projects column widths | |
// @namespace https://www.wildfireinternet.co.uk/ | |
// @version 0.1 | |
// @description By default the column widths on project boards on github are too big, this decreases them a little | |
// @author Andrew | |
// @match https://github.com/*/*/projects/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var style = document.createElement('style'); | |
style.innerHTML = '.project-column { max-width: 300px; min-width: 300px; }'; | |
document.body.appendChild(style); | |
// Your code here... | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment