diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 653e07b79f..1c055c4171 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -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; }