Merge branch 'wasmboy' into 'main'

MediaGallery: fix cursor over Gameboy component

See merge request soapbox-pub/soapbox!2869
This commit is contained in:
Alex Gleason 2023-11-25 05:39:50 +00:00
commit 509c04dec1

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