10 lines
104 B
SCSS
10 lines
104 B
SCSS
a {
|
|
img {
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
&:hover img {
|
|
transform: scale(1.05);
|
|
}
|
|
}
|