+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/styles/global.css b/frontend/src/styles/global.css
index 9c021b0..b2ee0f6 100644
--- a/frontend/src/styles/global.css
+++ b/frontend/src/styles/global.css
@@ -21,3 +21,19 @@ textarea,
select {
font: inherit;
}
+
+.doc-block.tree-flash {
+ animation: tree-flash 1.6s ease;
+}
+
+@keyframes tree-flash {
+ 0%,
+ 100% {
+ outline-color: var(--c-primary);
+ }
+
+ 50% {
+ background: #fff7d6;
+ outline-color: var(--c-warn);
+ }
+}