diff options
| author | taehoon <th.dev91@gmail.com> | 2019-12-03 11:16:38 -0500 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-12-03 11:16:38 -0500 |
| commit | 9d44015ab477634d6b1e42cb096a58453b8d0914 (patch) | |
| tree | 910551d7352933e17c2474804206a2ada5ec208f /src | |
| parent | 57f46e68e4a0d137e8cb65ba603dfe4b8114ebbf (diff) | |
add animate-spin class
Diffstat (limited to 'src')
| -rw-r--r-- | src/App.scss | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/App.scss b/src/App.scss index 310962b8..925913f2 100644 --- a/src/App.scss +++ b/src/App.scss @@ -855,3 +855,18 @@ nav { .btn.btn-default { min-height: 28px; } + +.animate-spin { + animation: spin 2s infinite linear; + display: inline-block; +} + +@keyframes spin { + 0% { + transform: rotate(0deg); + } + + 100% { + transform: rotate(359deg); + } +} |
