view tweetdeck-column-fix.user.js @ 83:a1e007bea4f1

Update deps
author nanaya <me@nanaya.pro>
date Tue, 13 Apr 2021 15:11:32 +0900
parents 86da34e62d29
children 2d9624e04134
line wrap: on
line source

// ==UserScript==
// @name         Tweetdeck column fix
// @namespace    https://myconan.net
// @version      1.0.2
// @description  No weird column alignment
// @author       nanaya
// @match        https://tweetdeck.twitter.com/*
// @grant        GM_addStyle
// @downloadURL  https://hg.myconan.net/ec-userscripts/raw-file/tip/tweetdeck-column-fix.user.js
// ==/UserScript==

/* global GM_addStyle */
GM_addStyle(`
  .app-columns {
    display: flex;
  }
  .column {
    top: 0;
    flex: none;
  }
`)