view tweetdeck-column-fix.user.js @ 118:8de2d53a4cb1

Fix metadata - fix download url - unify spacing
author nanaya <me@nanaya.net>
date Sun, 15 Jan 2023 23:57:10 +0900
parents 7774174022af
children
line wrap: on
line source

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

'use strict';

/* global GM_addStyle */
GM_addStyle(`
  .app-columns {
    display: flex;
  }
  .column {
    top: 0;
    flex: none;
  }
  .app-columns-container.app-columns-container.app-columns-container.app-columns-container {
    bottom: 0;
    background-color: #555;
  }
`);