This is my solution to The Odin Project Admin Dashboard
- Live Site URL: https://syjem.github.io/stack-dashboard/
- Semantic HTML5 markup
- CSS custom properties
- CSS Grid
- Flex-box
- Mobile-first workflow
- JavaScript
- Zoom images
img.forEach((pic) => {
pic.addEventListener("click", () => {
modal.style.display = "block";
modalImage.src = pic.src;
caption.textContent = pic.alt;
});
});
close.addEventListener("click", () => {
modal.style.display = "none";
});
};