animate modal.

This commit is contained in:
Bryce Covert
2018-04-05 09:20:53 -07:00
parent 23e1a7e20f
commit 154b2a214b

View File

@@ -26,6 +26,9 @@
@keyframes scaleUp { @keyframes scaleUp {
from { opacity: 0; transform: scale(.95); } from { opacity: 0; transform: scale(.95); }
} }
@keyframes appear {
from { opacity: 0; }
}
@keyframes moveToTop { @keyframes moveToTop {
from { } from { }
@@ -61,6 +64,10 @@
color: #2EB398; color: #2EB398;
border: 3px solid #2EB398; border: 3px solid #2EB398;
} }
.modal {
animation: appear .7s ease both;
}
.inbox-messages { .inbox-messages {
animation: scaleUp .7s ease both; animation: scaleUp .7s ease both;
} }