mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-25 18:02:23 +01:00
12 lines
205 B
CSS
12 lines
205 B
CSS
#cursor {
|
|
pointer-events: none;
|
|
/* doing this makes sure .elementFromPoint
|
|
do not acquires the image cursor object */
|
|
position: absolute;
|
|
}
|
|
|
|
/* makes the cursor invisible */
|
|
|
|
* {
|
|
cursor: none;
|
|
}
|