aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/index.scss
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/index.scss')
-rw-r--r--frontend/src/index.scss12
1 files changed, 12 insertions, 0 deletions
diff --git a/frontend/src/index.scss b/frontend/src/index.scss
index 9d6afc4..ea360be 100644
--- a/frontend/src/index.scss
+++ b/frontend/src/index.scss
@@ -77,3 +77,15 @@ a {
.popover-header {
color: $color-primary-1;
}
+
+@keyframes pulse {
+ 0% {
+ opacity: 1;
+ }
+ 50% {
+ opacity: 0.3;
+ }
+ 100% {
+ opacity: 1;
+ }
+}