Browse Source

Add pulsation effect to warning sign

Carsten Porth 5 years ago
parent
commit
925d810d3a
1 changed files with 13 additions and 0 deletions
  1. 13 0
      app/src/pages/write-tweet/write-tweet.scss

+ 13 - 0
app/src/pages/write-tweet/write-tweet.scss

@@ -36,5 +36,18 @@ page-write-tweet {
   }
   ion-icon.warning {
     color: orange;
+    animation: pulse 1.8s infinite;
+  }
+}
+
+@keyframes pulse {
+  0% {
+    transform: scale(1);
+  }
+  50% {
+    transform: scale(1.3);
+  }
+  100% {
+    transform: scale(1);
   }
 }