You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
317 B
SCSS

.image-hover-container {
display: inline-block;
position: relative;
width: 100%;
.image-default {
display: block;
}
.image-hovered {
display: none;
}
&:hover .image-hovered {
display: block;
}
&:hover .image-default {
display: none;
}
}