preventing submits.

This commit is contained in:
BC
2019-02-19 08:26:29 -08:00
parent b90d470664
commit 5435b6a317
4 changed files with 81 additions and 36 deletions

View File

@@ -100,6 +100,35 @@
.modal {
animation: appear .7s ease both;
}
@keyframes grow-width {
from {
width: 0px;
opacity: 0;
}
}
@keyframes shrink-width {
to {
width: 0px;
opacity: 0;
}
}
.slide-in-right {
animation: grow-width 0.5s ease both;
}
.slide-in-right div {
width: 1000px;
overflow: hidden;
}
.slide-out-right {
animation: shrink-width 0.5s ease both;
}
.slide-out-right div {
width: 1000px;
overflow: hidden;
}
.inbox-messages {
animation: scaleUp .3s ease both;
}