Skip to content

Instantly share code, notes, and snippets.

@ELLIOTTCABLE
Forked from 0atman/remove-sidebar.css
Created October 1, 2018 15:01
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 ELLIOTTCABLE/e67f8739d06fac95f8661626d66ea261 to your computer and use it in GitHub Desktop.
Save ELLIOTTCABLE/e67f8739d06fac95f8661626d66ea261 to your computer and use it in GitHub Desktop.
slack.com remove left sidebar
/* hide the sidebar */
.client_channels_list_container {
display: none;
}
#team_menu {
display: none;
}
#col_channels_bg {
display: none;
}
#col_channels {
display: none;
}
#messages_container {
margin-left: 0;
}
#messages-input-container {
left: -160px;
}
/* move the favouites star over */
#channel_header .star {
right: 50px;
left: auto;
}
@ELLIOTTCABLE
Copy link
Author

Updated from the original to handle changes in the Slack design (I think?)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment