comparison 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
comparison
equal deleted inserted replaced
73:521dda0a0b6f 74:78598a92e6fc
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 `)