Fork of Chiri for Astro for my blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

style: tweak img hover cursor

the3ash 3ed8bf0b 965c0524

+1 -1
+1 -1
src/components/ui/ImageViewer.astro
··· 55 55 const previewImages = document.querySelectorAll('img[data-preview="true"]') 56 56 previewImages.forEach((img) => { 57 57 const imgElement = img as HTMLImageElement 58 - imgElement.style.cursor = 'zoom-in' 58 + imgElement.style.cursor = 'pointer' 59 59 imgElement.addEventListener('click', (e) => { 60 60 e.preventDefault() 61 61 const target = e.target as HTMLImageElement