Last active
August 15, 2017 18:11
-
-
Save dawnerd/41e658d6b3215c6b6b2c3ccb4761a470 to your computer and use it in GitHub Desktop.
Brings back today view on top
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
// 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