Skip to content

Instantly share code, notes, and snippets.

@axwalker
Created October 10, 2019 13:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save axwalker/a8966229a0d4d8068760cbd85a5f71fa to your computer and use it in GitHub Desktop.
Save axwalker/a8966229a0d4d8068760cbd85a5f71fa to your computer and use it in GitHub Desktop.
Neater stickers in trello
:root {
--sticker-size: 40px;
}
.list-card.is-stickered .list-card-details {
margin-top: 55px;
}
.list-card-stickers-area {
left: 5px;
top: 15px;
}
.list-card.is-stickered .stickers {
height: var(--sticker-size);
display: flex;
}
.sticker {
position: static;
height: var(--sticker-size);
width: var(--sticker-size);
transform: rotate(0deg) !important;
margin-right: 3px;
}
.sticker-image,
.sticker-remove-image,
.sticker-removing-highlight {
height: var(--sticker-size);
width: var(--sticker-size);
transform: rotate(0deg) !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment