aboutsummaryrefslogtreecommitdiff
path: root/node_modules/font-awesome/scss/_animated.scss
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <msabate@suse.com>2021-07-06 11:46:12 +0200
committerMiquel Sabaté Solà <msabate@suse.com>2021-07-06 11:46:12 +0200
commitf016e7cdffd5b20b1f7b828e95da25d34a010cdd (patch)
tree63053baeadb82cf8a60b92f9d6af9be778cff020 /node_modules/font-awesome/scss/_animated.scss
parent2e3dda30a0a4f6ced175d3eaf03bdbbb46846b62 (diff)
downloadjo.mssola.com-f016e7cdffd5b20b1f7b828e95da25d34a010cdd.tar.gz
jo.mssola.com-f016e7cdffd5b20b1f7b828e95da25d34a010cdd.zip
Removed node_modules completely
This was a leftover from a bad commit. Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to 'node_modules/font-awesome/scss/_animated.scss')
-rw-r--r--node_modules/font-awesome/scss/_animated.scss34
1 files changed, 0 insertions, 34 deletions
diff --git a/node_modules/font-awesome/scss/_animated.scss b/node_modules/font-awesome/scss/_animated.scss
deleted file mode 100644
index 8a020db..0000000
--- a/node_modules/font-awesome/scss/_animated.scss
+++ /dev/null
@@ -1,34 +0,0 @@
-// Spinning Icons
-// --------------------------
-
-.#{$fa-css-prefix}-spin {
- -webkit-animation: fa-spin 2s infinite linear;
- animation: fa-spin 2s infinite linear;
-}
-
-.#{$fa-css-prefix}-pulse {
- -webkit-animation: fa-spin 1s infinite steps(8);
- animation: fa-spin 1s infinite steps(8);
-}
-
-@-webkit-keyframes fa-spin {
- 0% {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- 100% {
- -webkit-transform: rotate(359deg);
- transform: rotate(359deg);
- }
-}
-
-@keyframes fa-spin {
- 0% {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- 100% {
- -webkit-transform: rotate(359deg);
- transform: rotate(359deg);
- }
-}