Skip to content

Instantly share code, notes, and snippets.

@golimpio
Last active August 29, 2015 13:56
Show Gist options
  • Save golimpio/9345328 to your computer and use it in GitHub Desktop.
Save golimpio/9345328 to your computer and use it in GitHub Desktop.
CSS rotate transformation on the ui-sortable-helper (Trello)
/* Trello just uses a CSS rotate transformation on the ui-sortable-helper */
.list-card.ui-sortable-helper {
transform: rotate(3deg);
-moz-transform: rotate(3deg);
-webkit-transform: rotate(3deg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment