74
|
1 // ==UserScript==
|
|
2 // @name Tweetdeck column fix
|
|
3 // @namespace https://myconan.net
|
|
4 // @version 1.0.0
|
|
5 // @description No weird column alignment
|
|
6 // @author nanaya
|
|
7 // @match https://tweetdeck.twitter.com/*
|
|
8 // @grant GM_addStyle
|
|
9 // @downloadURL https://hg.sr.ht/~nanaya/ec-userscripts/raw/default/tweetdeck-column-fix.user.js
|
|
10 // ==/UserScript==
|
|
11
|
|
12 /* global GM_addStyle */
|
|
13 GM_addStyle(`
|
|
14 .app-columns {
|
|
15 display: flex;
|
|
16 }
|
|
17 .column {
|
|
18 top: 0;
|
|
19 flex: none;
|
|
20 }
|
|
21 `)
|