changeset 74:78598a92e6fc

Add tweetdeck column fixer
author nanaya <me@nanaya.pro>
date Tue, 07 Jul 2020 01:56:37 +0900
parents 521dda0a0b6f
children 0aa28e02e257
files tweetdeck-column-fix.user.js
diffstat 1 files changed, 21 insertions(+), 0 deletions(-) [+]
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;
+  }
+`)