view tweetdeck-column-fix.user.js @ 77:5a3a269c5e6f

Update downloadurl
author nanaya <me@nanaya.pro>
date Wed, 08 Jul 2020 20:45:05 +0900
parents 78598a92e6fc
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;
  }
`)