Skip to content

Instantly share code, notes, and snippets.

@rashfael
Last active April 28, 2017 20:32
Show Gist options
  • Save rashfael/b0fa9c7ffff1cf44bc7639269440a026 to your computer and use it in GitHub Desktop.
Save rashfael/b0fa9c7ffff1cf44bc7639269440a026 to your computer and use it in GitHub Desktop.
Tampermonkey script: Mastodon full width columns
// ==UserScript==
// @name Mastodon full width columns
// @namespace http://isobeef.org/
// @version 0.1
// @description Mastodon full width columns
// @author rash <rashfael@isobeef.org>
// @updateUrl https://gist.github.com/rashfael/b0fa9c7ffff1cf44bc7639269440a026/raw/mastodon-full-width-columns.user.js
// @downloadUrl https://gist.github.com/rashfael/b0fa9c7ffff1cf44bc7639269440a026/raw/mastodon-full-width-columns.user.js
// @match https://chaos.social/web/*
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
GM_addStyle('.column, .drawer { flex: 1 1 auto; max-width: none; }');
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment