Mercurial > ec-userscripts
view 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 source
// ==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; } `)