Disable cursor events on images (interferes with drag/drop)

master
Noah 2023-12-21 20:23:57 -08:00
parent dffd432221
commit 21797788a2
1 changed files with 6 additions and 0 deletions

View File

@ -6,6 +6,12 @@ body {
min-height: 100vh;
}
/* No dragging images - it plays wrongly with the drag/drop image sharing feature
and users can accidentally share in chat by dragging an on-page image */
img {
pointer-events: none;
}
.float-right {
float: right;
}