Created
May 19, 2019 17:48
-
-
Save katabame/10f79375fcc6f07fcf3fca56b0a348dc to your computer and use it in GitHub Desktop.
bring back old tweetdeck style
This file contains 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
@-moz-document domain("tweetdeck.twitter.com") | |
{ | |
:root | |
{ | |
/* Change this var to adjust width */ | |
--column-width: 270px; | |
} | |
/* Tweet composer */ | |
.app-content.is-open | |
{ | |
transform: translateX(var(--column-width)) !important; | |
margin-right: var(--column-width) !important; | |
} | |
.drawer.wide | |
{ | |
width: var(--column-width) !important; | |
left: calc(var(--column-width) * -1) !important; | |
} | |
/* Tweet column */ | |
.column | |
{ | |
width: var(--column-width) !important; | |
} | |
/* Misc: make navigator icons center */ | |
#column-navigator, .app-navigator | |
{ | |
left: -2.5px !important; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment