diff options
| author | HJ <30-hj@users.noreply.git.pleroma.social> | 2019-12-03 20:15:06 +0000 |
|---|---|---|
| committer | HJ <30-hj@users.noreply.git.pleroma.social> | 2019-12-03 20:15:06 +0000 |
| commit | 7b1d5a4f5c54e6ea549a3a69d180970305ff0715 (patch) | |
| tree | 9cd41f164ddedd7b7aa7289eb431e10f06153bb7 /src/App.scss | |
| parent | 5096bff16cc680b7253c05a7ffa1d1c18da727a8 (diff) | |
| parent | d37caeeded0ebe90a2e922205eed94b5cc4fcca4 (diff) | |
Merge branch '701' into 'develop'
Versioning the font resources using webpack
Closes #701
See merge request pleroma/pleroma-fe!1017
Diffstat (limited to 'src/App.scss')
| -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); + } +} |
