feat(ui): show circles only when hovering InputShape

This commit is contained in:
release-bot
2026-02-09 22:15:39 +01:00
parent ed3d48e07f
commit f36f0cb230

View File

@@ -274,6 +274,11 @@
stroke-width: 1px;
stroke: var(--color-layer-3);
fill: var(--color-layer-2);
opacity: 0;
transition: opacity 0.2s ease;
}
svg:hover circle {
opacity: 1;
}
circle.active,
circle:hover {