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

This commit is contained in:
Noah 2023-12-21 20:23:57 -08:00
parent dffd432221
commit 21797788a2

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;
}