From e6fdc1f38584fa46d3f616d3baebe1cb11b4e5fd Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Fri, 16 May 2025 19:03:40 +0200 Subject: [PATCH] Remove breathing animation from SVG in editor component --- src/lib/components/editor/editor.svelte | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/lib/components/editor/editor.svelte b/src/lib/components/editor/editor.svelte index 07f06e700..d1de0387d 100644 --- a/src/lib/components/editor/editor.svelte +++ b/src/lib/components/editor/editor.svelte @@ -90,19 +90,6 @@ :global(svg) { height: 128px; width: 128px; - animation: breathe 1.5s ease-in-out infinite; - - @keyframes breathe { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.1); - } - 100% { - transform: scale(1); - } - } } }