Implement inflating messages animation

This commit is contained in:
Kristóf Tóth 2018-06-25 15:36:06 +02:00
parent 736f0eea71
commit 9af0467489

View File

@ -28,6 +28,15 @@
padding: $tiny;
font-size: $font-size-base;
margin-bottom: $hair;
animation-name: inflate;
animation-duration: 0.5s;
animation-timing-function: cubic-bezier(0.01, 0.1, 0, 1);
}
@keyframes inflate {
0% { transform: scale(0,0); }
100% { transform: scale(1,1); }
}
.tfw-grid-message-header {