Skip to content

Instantly share code, notes, and snippets.

@oal
Created July 6, 2014 15:07
Show Gist options
  • Save oal/52664d5bab13f77c936e to your computer and use it in GitHub Desktop.
Save oal/52664d5bab13f77c936e to your computer and use it in GitHub Desktop.
Cut Tweetdeck columns in half and remove scroll bars.
@-moz-document domain(tweetdeck.twitter.com) {
.app-columns {
display: flex;
flex-flow: row wrap;
}
.column {
flex: 1 20% !important;
height:50% !important;
}
.column-header {
height: 30px !important;
line-height: 30px !important;
}
.column-title {
font-size: 1em !important;
}
.js-column-scroller {
width: 105%!important;
}
.column-content {
top: 30px !important;
}
.icon-sliders {
font-size: 18px !important;
}
.column-settings-link {
margin-top: -4px
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment