Last active
December 29, 2020 22:16
-
-
Save PedroHLC/78f05e1ba215d00c113c6d984d3f8fb2 to your computer and use it in GitHub Desktop.
Slack's second column (contact details, threads, etc) in fullscreen
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ==UserStyle== | |
@name Slack fullscreen details | |
@namespace https://gist.github.com/PedroHLC/78f05e1ba215d00c113c6d984d3f8fb2 | |
@homepageURL https://gist.github.com/PedroHLC/78f05e1ba215d00c113c6d984d3f8fb2 | |
@updateURL https://gist.githubusercontent.com/PedroHLC/78f05e1ba215d00c113c6d984d3f8fb2/raw/slack-fullscreen.user.css | |
@version 0.9.0 | |
@license Other | |
@description Slack's second column (contact details, threads, etc) in fullscreen | |
@author PedroHLC (https://pedrohlc.com) | |
==/UserStyle== */ | |
@-moz-document domain("app.slack.com") { | |
.p-workspace__secondary_view_contents { | |
position: fixed; | |
width: 100vw; | |
height: calc(100vh - 38px); | |
z-index: 100; | |
left: 0; | |
top: 38px; | |
right: 0 !important; | |
background-color: black; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment