Skip to content

Commit

Permalink
Replace div with span
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvkb committed Aug 29, 2024
1 parent c986e1a commit 3e057ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/VImageCell/VImageCell.vue
Original file line number Diff line number Diff line change
Expand Up @@ -169,14 +169,14 @@ const { isHidden: shouldBlur } = useSensitiveMedia(props.image)
@load="getImgDimension"
@error="onImageLoadError($event)"
/>
<div
<span
class="col-span-full row-span-full flex items-center justify-center bg-blur backdrop-blur-xl duration-200 motion-safe:transition-opacity"
:class="shouldBlur ? 'opacity-100' : 'opacity-0'"
data-testid="blur-overlay"
aria-hidden="true"
>
<VIcon name="eye-closed" />
</div>
</span>
<figcaption
class="z-10 col-span-full my-2 self-end justify-self-start rounded-sm text-default group-hover:visible group-focus-visible:visible"
:class="[
Expand Down

0 comments on commit 3e057ba

Please sign in to comment.