After creating a react web-app with a custom build - including webpack, webpack-server, typescript, image-loaders, css, scss, and css-modules - I encountered an issue with CSS pseudo elements. The hover effect is not working as expected.
.image {
height: auto;
width: auto;
z-index: 10;
}
.image:hover{
visibility: hidden !important;
}
You can view the live preview here.
I'm unsure of what's causing this problem. I would greatly appreciate any professional tips or insights you may have on how to resolve it.