fix scrolling to top on lightbox close for admin

This commit is contained in:
inhji 2023-03-22 08:37:52 +01:00
parent b9bafebee9
commit 7657cd7da3

View file

@ -35,7 +35,7 @@ defmodule ChiyaWeb.NoteShowLive do
<.line />
<%= if !Enum.empty?(@note.images) do %>
<div class="flex flex-wrap gap-3">
<div class="flex flex-wrap gap-3" id="images">
<%= for image <- @note.images do %>
<article>
<a href={"#image-#{image.id}"}>
@ -55,7 +55,7 @@ defmodule ChiyaWeb.NoteShowLive do
</a>
</p>
<a href="#" class="lightbox" id={"image-#{image.id}"}>
<a href="#images" class="lightbox" id={"image-#{image.id}"}>
<span style={"background-image: url('#{Chiya.Uploaders.NoteImage.url({image.path, image}, :full_dithered)}')"}>
</span>
</a>