diff options
Diffstat (limited to 'core/css/animations.scss')
-rw-r--r-- | core/css/animations.scss | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/core/css/animations.scss b/core/css/animations.scss new file mode 100644 index 00000000000..c3aac5ec753 --- /dev/null +++ b/core/css/animations.scss @@ -0,0 +1,24 @@ +/*! + * SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ +@-webkit-keyframes rotate { + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} +@keyframes rotate { + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} |