From b0ae63fb6ac21bc0d219be4da6d28dfcb68f58b7 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Mon, 16 Feb 2026 19:55:43 -0800 Subject: [PATCH] Feat: Add sune-spin animation --- src/style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/style.css b/src/style.css index 6f27499..ad61763 100644 --- a/src/style.css +++ b/src/style.css @@ -25,3 +25,6 @@ mjx-container[jax="SVG"][display="true"] { mjx-container svg { max-width: 100%; } + +@keyframes sune-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } +.sune-generating { display: inline-block; animation: sune-spin 4s linear infinite; color: #9ca3af; }