[MFM] Add spin syntax

Resolve #4003
This commit is contained in:
syuilo
2019-01-27 16:18:04 +09:00
parent d906d90010
commit e5d9381503
6 changed files with 47 additions and 0 deletions

View File

@@ -26,3 +26,8 @@
transform: translateY(0);
}
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}