vue-black-dash/src/assets/sass/black-dashboard/cards/_card-animation-on-hover.scss
2018-08-17 18:30:16 +03:00

9 lines
186 B
Vue

.card-animation-on-hover{
transition: all .3s cubic-bezier(.34,1.61,.7,1);
&:hover{
transform: translate3d(0,-5px,0);
transition: all .3s cubic-bezier(.34,1.61,.7,1);
}
}