From a338fe2398a82b5e54f2e53205fc896ec22fd62f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nicole=20miko=C5=82ajczyk?= Date: Mon, 16 Mar 2026 18:24:23 +0100 Subject: [PATCH] nicolium: remove unused tailwind animations MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: nicole mikołajczyk --- packages/nicolium/tailwind.config.ts | 30 ---------------------------- 1 file changed, 30 deletions(-) diff --git a/packages/nicolium/tailwind.config.ts b/packages/nicolium/tailwind.config.ts index 43b47a728..e66ec63cf 100644 --- a/packages/nicolium/tailwind.config.ts +++ b/packages/nicolium/tailwind.config.ts @@ -70,39 +70,9 @@ const config: Config = { greentext: true, }), animation: { - 'sonar-scale-4': 'sonar-scale-4 3s linear infinite', - 'sonar-scale-3': 'sonar-scale-3 3s 0.5s linear infinite', - 'sonar-scale-2': 'sonar-scale-2 3s 1s linear infinite', - 'sonar-scale-1': 'sonar-scale-1 3s 1.5s linear infinite', - enter: 'enter 200ms ease-out', - leave: 'leave 150ms ease-in forwards', 'text-overflow': 'text-overflow 8s linear infinite', }, keyframes: { - 'sonar-scale-4': { - from: { opacity: '0.4', transform: 'scale(1)' }, - to: { opacity: '0', transform: 'scale(4)' }, - }, - 'sonar-scale-3': { - from: { opacity: '0.4', transform: 'scale(1)' }, - to: { opacity: '0', transform: 'scale(3.5)' }, - }, - 'sonar-scale-2': { - from: { opacity: '0.4', transform: 'scale(1)' }, - to: { opacity: '0', transform: 'scale(3)' }, - }, - 'sonar-scale-1': { - from: { opacity: '0.4', transform: 'scale(1)' }, - to: { opacity: '0', transform: 'scale(2.5)' }, - }, - enter: { - from: { transform: 'scale(0.9)', opacity: '0' }, - to: { transform: 'scale(1)', opacity: '1' }, - }, - leave: { - from: { transform: 'scale(1)', opacity: '1' }, - to: { transform: 'scale(0.9)', opacity: '0' }, - }, // https://stackoverflow.com/posts/78825869/revisions 'text-overflow': { '10%, 90%': { transform: 'translate(0, 0)', left: '0%' },