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
22 lines
317 B
SCSS
![]()
2 years ago
|
.image-hover-container {
|
||
|
position: relative;
|
||
|
display: inline-block;
|
||
|
width: 100%;
|
||
|
|
||
|
.image-default {
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
.image-hovered {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
&:hover .image-hovered {
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
&:hover .image-default {
|
||
|
display: none;
|
||
|
}
|
||
|
}
|