mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-12 16:14:46 +08:00
9 lines
221 B
CSS
9 lines
221 B
CSS
.ueb-draggable {
|
|
/* Indicate the element draggable */
|
|
cursor: move;
|
|
/* It will be positioned absolutely */
|
|
position: absolute;
|
|
/* Doesn't allow to select the content inside */
|
|
user-select: none;
|
|
}
|