Skip to content

Instantly share code, notes, and snippets.

@dawnerd
Last active August 15, 2017 18:11
Show Gist options
  • Save dawnerd/41e658d6b3215c6b6b2c3ccb4761a470 to your computer and use it in GitHub Desktop.
Save dawnerd/41e658d6b3215c6b6b2c3ccb4761a470 to your computer and use it in GitHub Desktop.
Brings back today view on top
// Install with user style plugin of choice
.GridTaskList > div > .TaskGroup > div {
display: flex;
-webkit-box-orient: vertical;
flex-direction: column;
}
.GridTaskList > div > .TaskGroup .TaskGroup {
-webkit-box-ordinal-group: 2;
order: 2;
}
.GridTaskList > div > .TaskGroup .TaskGroup:nth-child(2) {
-webkit-box-ordinal-group: 1;
order: 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment