view tweetdeck-column-fix.user.js @ 79:e4b970501e8e

Missed the url fix
author nanaya <me@nanaya.pro>
date Thu, 06 Aug 2020 19:41:24 +0900
parents 5a3a269c5e6f
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;
  }
`)