Created
December 29, 2023 21:03
-
-
Save svierk/9d1e4724634f3536cca36b4a3d30ca62 to your computer and use it in GitHub Desktop.
CSS Styles for Drag & Drop Demo LWC
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
.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