removing the pointer events on the lightbox__picture
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Antoine M 2024-08-12 10:37:49 +02:00
parent 4b7b165d86
commit 888c943d55

View File

@ -1,8 +1,11 @@
.lightbox-gallery { .lightbox-gallery {
@apply grid grid-cols-3 gap-6; @apply grid sm:grid-cols-2 lg:grid-cols-3 gap-6;
img { img {
@apply h-full w-full object-cover max-h-80; @apply h-full w-full object-cover max-h-80;
} }
&__picture {
@apply pointer-events-none;
}
} }
.lightbox { .lightbox {