We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b5b9ba commit 94ea83cCopy full SHA for 94ea83c
1 file changed
web/src/lib/components/asset-viewer/asset-viewer.svelte
@@ -586,11 +586,11 @@
586
587
{#if stack && withStacked}
588
{@const stackedAssets = stack.assets}
589
- <div id="stack-slideshow" class="absolute bottom-0 w-full col-span-4 col-start-1">
+ <div id="stack-slideshow" class="absolute bottom-0 w-full col-span-4 col-start-1 pointer-events-none">
590
<div class="relative flex flex-row no-wrap overflow-x-auto overflow-y-hidden horizontal-scrollbar">
591
{#each stackedAssets as stackedAsset (stackedAsset.id)}
592
<div
593
- class={['inline-block px-1 relative transition-all pb-2']}
+ class={['inline-block px-1 relative transition-all pb-2 pointer-events-auto']}
594
style:bottom={stackedAsset.id === asset.id ? '0' : '-10px'}
595
>
596
<Thumbnail
0 commit comments