From 499ab1bacb0cffa4998a97c2ed732c276414523c Mon Sep 17 00:00:00 2001 From: Benjamin Cabanes <3447705+bcabanes@users.noreply.github.com> Date: Thu, 18 Aug 2022 14:51:07 -0400 Subject: [PATCH] docs(nxdev): remove unused css wobble animation (#11638) --- .../styles/constellation-wobble.animation.css | 21 ------------------- nx-dev/nx-dev/styles/main.css | 4 ---- 2 files changed, 25 deletions(-) delete mode 100644 nx-dev/nx-dev/styles/constellation-wobble.animation.css diff --git a/nx-dev/nx-dev/styles/constellation-wobble.animation.css b/nx-dev/nx-dev/styles/constellation-wobble.animation.css deleted file mode 100644 index 7085f36828..0000000000 --- a/nx-dev/nx-dev/styles/constellation-wobble.animation.css +++ /dev/null @@ -1,21 +0,0 @@ -@keyframes wobble { - from { - transform: rotate(0deg); - } - 25% { - transform: rotate(3deg); - } - 50% { - transform: rotate(0deg); - } - 75% { - transform: rotate(-3deg); - } - to { - transform: rotate(0deg); - } -} - -.constellation-wobble-animation { - animation: wobble 60s linear infinite; -} diff --git a/nx-dev/nx-dev/styles/main.css b/nx-dev/nx-dev/styles/main.css index 9000793460..5f08e346a3 100644 --- a/nx-dev/nx-dev/styles/main.css +++ b/nx-dev/nx-dev/styles/main.css @@ -8,10 +8,6 @@ @tailwind components; @tailwind utilities; -/*! purgecss start ignore */ -@import './constellation-wobble.animation.css'; -/*! purgecss end ignore */ - svg { shape-rendering: auto; text-rendering: optimizeLegibility;