From 8cac0dec6ff8be9180f29bd09cdc996fb1ad3556 Mon Sep 17 00:00:00 2001 From: Brenden Bice Date: Mon, 8 Apr 2019 14:06:18 -0400 Subject: [PATCH] add fadein effect to panel --- src/components/status/status.vue | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/components/status/status.vue b/src/components/status/status.vue index 653e07b7..1c055c41 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; }