view tweetdeck-column-fix.user.js @ 136:1e64e81370a3 default tip

Add nginx-https
author nanaya <me@nanaya.net>
date Tue, 27 Feb 2024 01:17:43 +0900
parents 8de2d53a4cb1
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;
  }
`);