Skip to content

Instantly share code, notes, and snippets.

@craig-jennings
Created October 26, 2020 13:31
Show Gist options
  • Save craig-jennings/255bd28345b6be08df4d1e1fd059e1c3 to your computer and use it in GitHub Desktop.
Save craig-jennings/255bd28345b6be08df4d1e1fd059e1c3 to your computer and use it in GitHub Desktop.
Dark Styling for Github Projects
.js-new-project-column-container {
display: none;
}
.js-project-columns-container {
display: grid !important;
grid-auto-flow: column;
grid-auto-columns: minmax(355px, 1fr);
grid-column-gap: 1rem;
grid-template-columns: repeat(auto-fit, minmax(355px, 1fr));
}
.project-column {
margin: 0 !important;
min-width: unset;
max-width: unset;
}
body::-webkit-scrollbar,
div::-webkit-scrollbar {
width: 11px;
}
body::-webkit-scrollbar-track,
div::-webkit-scrollbar-track{
background: #181818;
}
body::-webkit-scrollbar-thumb,
div::-webkit-scrollbar-thumb {
background-color: #aaa ;
border-radius: 6px;
border: 3px solid #181818;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment