1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00

refactor node comments container

This commit is contained in:
Fedor Katurov 2023-11-19 18:19:03 +06:00
parent eea7095e65
commit 34797c2ac0
32 changed files with 9 additions and 9 deletions

View file

@ -0,0 +1,17 @@
@import 'src/styles/variables';
@keyframes appear {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.wrap {
animation: appear 1s;
}
.highlighted {
box-shadow: $color_primary 0 0 0px 2px;
}