aboutsummaryrefslogtreecommitdiff
path: root/frontend/styles/lib/icons.sass
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/styles/lib/icons.sass')
-rw-r--r--frontend/styles/lib/icons.sass15
1 files changed, 15 insertions, 0 deletions
diff --git a/frontend/styles/lib/icons.sass b/frontend/styles/lib/icons.sass
new file mode 100644
index 0000000..d3fb2ef
--- /dev/null
+++ b/frontend/styles/lib/icons.sass
@@ -0,0 +1,15 @@
+.g-Icon
+ &--Spin
+ animation: g-Icon--Spin 2s ease-in-out infinite, g-Icon--Appear 1s ease-in;
+
+@keyframes g-Icon--Spin
+ 0%
+ transform: rotate(0deg)
+ 100%
+ transform: rotate(360deg)
+
+@keyframes g-Icon--Appear
+ 0%
+ opacity: 0
+ 100%
+ opacity: 1