Skip to content

Instantly share code, notes, and snippets.

@svierk
Created December 29, 2023 21:03
Show Gist options
  • Save svierk/9d1e4724634f3536cca36b4a3d30ca62 to your computer and use it in GitHub Desktop.
Save svierk/9d1e4724634f3536cca36b4a3d30ca62 to your computer and use it in GitHub Desktop.
CSS Styles for Drag & Drop Demo LWC
.card-height {
height: 300px;
}
.datatable-height {
height: 230px;
}
.grabbable {
cursor: move;
cursor: grab;
cursor: -moz-grab;
cursor: -webkit-grab;
}
.grabbable:active {
cursor: grabbing;
cursor: -moz-grabbing;
cursor: -webkit-grabbing;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment