FIX: subtle fade in + scale up animation on user cards for Safari
This commit is contained in:
parent
8ebab581ad
commit
833d4f5247
|
@ -13,12 +13,17 @@
|
||||||
background-position: center center;
|
background-position: center center;
|
||||||
min-height: 175px;
|
min-height: 175px;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transform: scale(.7);
|
-webkit-transform: scale(.7);
|
||||||
transition: opacity .2s, transform .2s;
|
-ms-transform: scale(.7);
|
||||||
|
transform: scale(.7);
|
||||||
|
-webkit-transition: opacity .2s, -webkit-transform .2s;
|
||||||
|
transition: opacity .2s, transform .2s;
|
||||||
|
|
||||||
&.show {
|
&.show {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
transform: scale(1);
|
-webkit-transform: scale(1);
|
||||||
|
-ms-transform: scale(1);
|
||||||
|
transform: scale(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-content {
|
.card-content {
|
||||||
|
|
Loading…
Reference in New Issue