Mercurial > ec-userscripts
diff tweetdeck-column-fix.user.js @ 74:78598a92e6fc
Add tweetdeck column fixer
author | nanaya <me@nanaya.pro> |
---|---|
date | Tue, 07 Jul 2020 01:56:37 +0900 |
parents | |
children | 5a3a269c5e6f |
line wrap: on
line diff
--- /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; + } +`)