From 88411e6d293d29ca61393c9bc3ba511e464061fd Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Fri, 24 Jul 2026 23:28:59 +1000 Subject: [PATCH] Restore rotate keyframes in _global.scss --- 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); + } +}