Commit b08bd78fcc1945551d11dcd89edcd244fc86a2f2

Authored by Marcelo Puebla
1 parent 1b8dee5957
Exists in develop

Add

clase css de transicion
Showing 1 changed file with 7 additions and 0 deletions   Show diff stats
src/sass/_animations.scss
... ... @@ -12,3 +12,10 @@
12 12 opacity: 1;
13 13 }
14 14 }
  15 +
  16 +.simple-hover {
  17 + transition: all 0.5s;
  18 + &:hover {
  19 + transform: scale(1.1);
  20 + }
  21 +}