add fadein effect to panel

fix-dropdown
Brenden Bice 6 years ago
parent 246fab328f
commit 8cac0dec6f

@ -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;
}

Loading…
Cancel
Save