Mercurial > ec-userscripts
view tweetdeck-column-fix.user.js @ 81:e30cd7fbee42
Actually working
author | nanaya <me@nanaya.pro> |
---|---|
date | Sat, 03 Oct 2020 02:21:56 +0900 |
parents | 5a3a269c5e6f |
children | 86da34e62d29 |
line wrap: on
line source
// ==UserScript== // @name Tweetdeck column fix // @namespace https://myconan.net // @version 1.0.1 // @description No weird column alignment // @author nanaya // @match https://tweetdeck.twitter.com/* // @grant GM_addStyle // @downloadURL https://hg.sr.ht/~nanaya/ec-userscripts/raw/tweetdeck-column-fix.user.js?rev=tip // ==/UserScript== /* global GM_addStyle */ GM_addStyle(` .app-columns { display: flex; } .column { top: 0; flex: none; } `)