Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CezaryDanielNowak/8e777db81706f2f8cbcbe8abd0ec1fd3 to your computer and use it in GitHub Desktop.
Save CezaryDanielNowak/8e777db81706f2f8cbcbe8abd0ec1fd3 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Slack: more space for channels
// @version 0.1
// @description try to take over the world!
// @author Cezary Nowak
// @match https://app.slack.com/client/*
// @icon https://www.google.com/s2/favicons?domain=slack.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
const style = document.createElement('style');
style.innerText = `.p-workspace__sidebar {
top: -40px;
z-index: 999;
position: absolute;
height: 100vh;
}
.p-workspace-layout {
overflow: visible !important;
}
`;
document.body.appendChild(style);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment