Last active
October 9, 2018 06:57
-
-
Save tyurderi/52e3372203f38e4f4cf1fc9e732e6fa0 to your computer and use it in GitHub Desktop.
Better trello style
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
.list-wrapper { | |
width: 240px !important; | |
margin: 0 2px; | |
} | |
.list-cards { | |
margin: 0; | |
} | |
.list-cards .list-card { | |
margin: 0 0 4px 0; | |
} | |
.list-cards .list-card .list-card-details { | |
padding: 4px; | |
} | |
.list-cards .list-card .list-card-details .list-card-labels .card-label { | |
border-radius: 2px; | |
padding: 0 6px; | |
} | |
.list-cards .list-card .list-card-details .badges { | |
margin-left: 2px; | |
} | |
.list-cards .list-card .list-card-details .badges .badge { | |
min-height: 16px; | |
} | |
.list-cards .list-card .list-card-details .badges .badge span { | |
width: 16px; | |
height: 16px; | |
font-size: 12px; | |
} | |
.list-cards .list-card .list-card-title { | |
font-size: 12px; | |
} |
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
.list-wrapper { | |
width: 240px !important; | |
margin: 0 2px; | |
} | |
.list-cards { | |
margin: 0; | |
.list-card { | |
margin: 0 0 4px 0; | |
.list-card-details { | |
padding: 4px; | |
.list-card-labels { | |
.card-label { | |
border-radius: 2px; | |
padding: 0 6px; | |
} | |
} | |
.badges { | |
margin-left: 2px; | |
.badge { | |
min-height: 16px; | |
span { | |
width: 16px; | |
height: 16px; | |
font-size: 12px; | |
} | |
} | |
} | |
} | |
.list-card-title { | |
font-size: 12px; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment