add fadein effect to panel

This commit is contained in:
Brenden Bice 2019-04-08 14:06:18 -04:00
parent 246fab328f
commit 8cac0dec6f

View file

@ -532,6 +532,20 @@ $status-margin: 0.75em;
}
}
.status-fadein {
animation-duration: 0.4s;
animation-name: fadein;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.greentext {
color: green;
}