# HG changeset patch # User nanaya # Date 1594054597 -32400 # Node ID 78598a92e6fc48f56350832d6976b331ca5df62d # Parent 521dda0a0b6f11bd1289f9b0c057c310bb564ac0 Add tweetdeck column fixer diff -r 521dda0a0b6f -r 78598a92e6fc tweetdeck-column-fix.user.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tweetdeck-column-fix.user.js Tue Jul 07 01:56:37 2020 +0900 @@ -0,0 +1,21 @@ +// ==UserScript== +// @name Tweetdeck column fix +// @namespace https://myconan.net +// @version 1.0.0 +// @description No weird column alignment +// @author nanaya +// @match https://tweetdeck.twitter.com/* +// @grant GM_addStyle +// @downloadURL https://hg.sr.ht/~nanaya/ec-userscripts/raw/default/tweetdeck-column-fix.user.js +// ==/UserScript== + +/* global GM_addStyle */ +GM_addStyle(` + .app-columns { + display: flex; + } + .column { + top: 0; + flex: none; + } +`)