From ab38ecd62ee233448e8a5a3e9106b595ac7df697 Mon Sep 17 00:00:00 2001 From: automated-signal <37887102+automated-signal@users.noreply.github.com> Date: Fri, 24 Jul 2026 08:41:18 -0500 Subject: [PATCH] Restore rotate keyframes in _global.scss Co-authored-by: Scott Nonnenberg --- stylesheets/_global.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/stylesheets/_global.scss b/stylesheets/_global.scss index a32161c514..5494e4ea7e 100644 --- a/stylesheets/_global.scss +++ b/stylesheets/_global.scss @@ -169,3 +169,9 @@ button:not(:disabled, [aria-disabled='true']) { .overflow-hidden { overflow: hidden; } + +@keyframes rotate { + to { + transform: rotate(360deg); + } +}