Remove breathing animation from SVG in editor component

This commit is contained in:
Torsten Dittmann
2025-05-16 19:03:40 +02:00
parent ec78e9ae01
commit e6fdc1f385
-13
View File
@@ -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);
}
}
}
}
</style>