shelley/ui: remove emoji rotation animations from tools

Philip Zeyliger and Shelley created

Prompt: get rid of the animations in the patch tool (and any other tools) that rotate the emoji
Co-authored-by: Shelley <shelley@exe.dev>

Change summary

ui/src/styles.css | 14 --------------
1 file changed, 14 deletions(-)

Detailed changes

ui/src/styles.css 🔗

@@ -862,7 +862,6 @@ button {
 }
 
 .tool-emoji.running {
-  animation: rotate 1s linear infinite;
 }
 
 .tool-command {
@@ -1161,7 +1160,6 @@ button {
 }
 
 .patch-tool-emoji.running {
-  animation: rotate 1s linear infinite;
 }
 
 .patch-tool-filename {
@@ -1547,7 +1545,6 @@ button {
 }
 
 .screenshot-tool-emoji.running {
-  animation: rotate 1s linear infinite;
 }
 
 .screenshot-tool-filename {
@@ -1700,7 +1697,6 @@ button {
 }
 
 .output-iframe-tool-emoji.running {
-  animation: rotate 1s linear infinite;
 }
 
 .output-iframe-tool-title {
@@ -2564,16 +2560,6 @@ svg {
   }
 }
 
-/* Rotation animation for running tools */
-@keyframes rotate {
-  from {
-    transform: rotate(0deg);
-  }
-  to {
-    transform: rotate(360deg);
-  }
-}
-
 /* Scroll to bottom button */
 .scroll-to-bottom-button {
   position: absolute;