prevent user from dragging image ghosts from theme selecter

This commit is contained in:
SethBurkart123
2024-05-08 20:56:06 +10:00
parent 80374bc9d0
commit c71228b620
+1 -1
View File
@@ -91,7 +91,7 @@ export const ThemeCover: React.FC<ThemeCoverProps> = ({
<img
src={(typeof theme.coverImage) == 'string' ? theme.coverImage as string : URL.createObjectURL(theme.coverImage as Blob)}
alt={theme.name}
className="absolute inset-0 z-0 object-cover w-full h-full"
className="absolute inset-0 z-0 object-cover w-full h-full pointer-events-none"
/>
}
{