From 8daa08d61bab0a61d424c713f92a85ddc2b8a4f2 Mon Sep 17 00:00:00 2001
From: Fedor Katurov <gotham48@gmail.com>
Date: Mon, 21 Oct 2019 20:03:47 +0700
Subject: [PATCH] comment appearance animation

---
 src/components/node/Comment/styles.scss | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/src/components/node/Comment/styles.scss b/src/components/node/Comment/styles.scss
index 1afb844d..c56bbe59 100644
--- a/src/components/node/Comment/styles.scss
+++ b/src/components/node/Comment/styles.scss
@@ -1,2 +1,11 @@
-.wrap {
+@keyframes appear {
+  from {
+    opacity: 0;
+  }
+  to {
+    opacity: 1;
+  }
+}
+.wrap {
+  animation: appear 1s;
 }