aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/base/_animations.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/styles/base/_animations.scss')
-rw-r--r--src/styles/base/_animations.scss13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/styles/base/_animations.scss b/src/styles/base/_animations.scss
new file mode 100644
index 0000000..903645f
--- /dev/null
+++ b/src/styles/base/_animations.scss
@@ -0,0 +1,13 @@
+@keyframes pulse {
+ from {
+ transform: scale(1);
+ }
+
+ 50% {
+ transform: scale(0.8);
+ }
+
+ to {
+ transform: scale(1);
+ }
+}