JutJut / svelte-kit-level-2

https://svelte-kit-level-2.netlify.app/
2 stars 1 forks source link

Add image hover animation #10

Closed Knochenmark closed 3 years ago

Knochenmark commented 3 years ago

Consider a mixin or wrapper component for reusability.

example css:

  .your-selector {
    transition: transform var(--transition-fast) ease-in-out !important;
  }

  &:hover .your-selector {
    transform: scale(1.1);
  }