Files
lena-schilling-website/packages/base/Resources/Public/Scss/components/_images.scss
Dominik Polakovics ad04647359
All checks were successful
Build / build (push) Successful in 4m4s
Build / deploy-stage (push) Successful in 2m41s
Build / switch-stage (push) Successful in 1m58s
feat: add image zoom, remove unused things
2024-12-15 00:10:31 +01:00

10 lines
104 B
SCSS

a {
img {
transition: transform 0.3s ease;
}
&:hover img {
transform: scale(1.05);
}
}