Skip to content

Instantly share code, notes, and snippets.

@zettca
Last active February 27, 2019 13:49
Show Gist options
  • Save zettca/fd929033de5de98c9b655137011edf93 to your computer and use it in GitHub Desktop.
Save zettca/fd929033de5de98c9b655137011edf93 to your computer and use it in GitHub Desktop.
Widen Trello Lists & Cards
// ==UserScript==
// @name Widen Trello Lists
// @namespace https://zettca.xyz/
// @version 0.1
// @description this script widens Trello lists, which are narrow af.
// @author zettca
// @match https://trello.com/b/*
// @grant GM_addStyle
// ==/UserScript==
GM_addStyle(`
.list-wrapper { width: auto; }
.list-card { max-width: 340px; }
.list-card-members { margin-bottom: -4px; }
.card-label { margin: 0 !important; }
.badge { margin: 0 4px 2px 0; }
`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment