From b394765e93ae644a65257c94299fac9ad1906cfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marcin=20miko=C5=82ajczak?= Date: Tue, 12 Nov 2024 13:00:23 +0100 Subject: [PATCH] pl-fe: Remove unused styles MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: marcin mikołajczak --- packages/pl-fe/src/styles/loading.scss | 47 -------------------------- 1 file changed, 47 deletions(-) diff --git a/packages/pl-fe/src/styles/loading.scss b/packages/pl-fe/src/styles/loading.scss index 988034b0f..071a54cb1 100644 --- a/packages/pl-fe/src/styles/loading.scss +++ b/packages/pl-fe/src/styles/loading.scss @@ -17,10 +17,6 @@ border-color: #e5e7eb; } -.no-reduce-motion .loading-indicator span { - animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1); -} - .no-reduce-motion .loading-indicator__figure { animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1); } @@ -51,46 +47,3 @@ @apply w-12 h-12 border-0 opacity-0 bg-transparent; } } - -@keyframes loader-label { - 0% { opacity: 0.25; } - 30% { opacity: 1; } - 100% { opacity: 0.25; } -} - -@keyframes heartbeat { - 0% { - transform: scale(1); - animation-timing-function: ease-out; - } - - 10% { - transform: scale(0.91); - animation-timing-function: ease-in; - } - - 17% { - transform: scale(0.98); - animation-timing-function: ease-out; - } - - 33% { - transform: scale(0.87); - animation-timing-function: ease-in; - } - - 45% { - transform: scale(1); - animation-timing-function: ease-out; - } -} - -.no-reduce-motion .pulse-loading { - transform-origin: center center; - animation: heartbeat 1.5s ease-in-out infinite both; -} - -.ptr, -.ptr__children { - @apply overflow-visible #{!important}; -}