feat: add hover animations to cards

This commit is contained in:
HarshKhandeparkar 2020-06-12 00:14:32 +05:30
parent 190038d7df
commit aa7a219418

View file

@ -156,4 +156,13 @@ nav {
color: #28D4E2;
}
.button1 {border-radius: 13px;}
/*Hovering Button Style*/
/* /Hovering Button Style*/
/* Card animations*/
.card {
transition: transform 0.2s;
}
.card:hover {
transform: scale(1.05);
}
/* /Card animations*/