mirror of
https://github.com/welpo/tabi.git
synced 2025-10-11 15:56:15 +02:00
22 lines
320 B
SCSS
22 lines
320 B
SCSS
.image-hover-container {
|
|
position: relative;
|
|
width: 100%;
|
|
|
|
.image-default {
|
|
display: inline;
|
|
}
|
|
|
|
.image-hovered {
|
|
display: none;
|
|
}
|
|
|
|
&:hover {
|
|
.image-default {
|
|
display: none;
|
|
}
|
|
|
|
.image-hovered {
|
|
display: inline;
|
|
}
|
|
}
|
|
}
|