mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2024-12-05 02:31:33 +00:00
Implement inflating messages animation
This commit is contained in:
parent
736f0eea71
commit
9af0467489
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user