修复 CSS Module spin 动画::global(spin) 改为本地 @keyframes spin

PostCSS 将 :global(spin) 解析为伪元素 :: 导致 Vercel 构建失败。
改用在每个 CSS Module 中定义本地 @keyframes spin。
This commit is contained in:
2569718930@qq.com
2026-05-14 18:06:53 +08:00
parent c8103179e1
commit ac90ef9206
9 changed files with 27 additions and 9 deletions
@@ -544,7 +544,7 @@
border: 2px solid rgba(34, 211, 238, 0.1);
border-top-color: var(--accent-cyan);
border-radius: 50%;
animation: :global(spin) 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
animation: spin 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
box-shadow: 0 0 15px rgba(34, 211, 238, 0.1);
}
@@ -836,3 +836,5 @@
opacity: 0.6;
}
}
@keyframes spin { to { transform: rotate(360deg); } }