MediaGallery: fix cursor over Gameboy component

This commit is contained in:
Alex Gleason 2023-11-24 23:39:17 -06:00
parent 5aa69c917f
commit dd1e1aca82
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -156,7 +156,7 @@ const Item: React.FC<IItem> = ({
style={{ position, float, left, top, right, bottom, height, width: `${width}%` }}
>
<Suspense fallback={<div className='media-gallery__item-thumbnail' />}>
<Gameboy className='media-gallery__item-thumbnail' src={attachment.url} />
<Gameboy className='media-gallery__item-thumbnail cursor-default' src={attachment.url} />
</Suspense>
</div>
);