diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f0f96db1..caa1fa804 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -48,7 +48,7 @@ ### Fixes -- Align Fill and Effects sub-controls to their shared property-row content rails, and improve font-settings accessibility without clearing selection when dismissing overlays. +- Align Fill and Effects sub-controls to their shared property-row content rails, make Layer rows fill the panel with cleaner root indentation, left-align icon menu labels, and improve font-settings accessibility without clearing selection when dismissing overlays. - Restore the Variables dialog empty state, full-width table layout, unclipped type menu, and expected Escape handling in dialogs and popup menus. - Pin the patched `websocket-driver` release used through Trystero/Firebase collaboration to resolve a critical protocol-length advisory. - Preserve unrelated Figma prototype, library, export, and raw metadata when editing modeled `.fig` fields, while still overriding stale field-specific payloads. diff --git a/packages/vue/src/primitives/LayerTree/LayerTreeItem.vue b/packages/vue/src/primitives/LayerTree/LayerTreeItem.vue index 13ee4a11a..3088a3d52 100644 --- a/packages/vue/src/primitives/LayerTree/LayerTreeItem.vue +++ b/packages/vue/src/primitives/LayerTree/LayerTreeItem.vue @@ -23,7 +23,7 @@ const ctx = useLayerTree() const isSelected = computed(() => ctx.selectedIds.value.has(node.id)) const isDragging = computed(() => ctx.draggingId.value === node.id) -const padLeft = computed(() => `${8 + (level - 1) * ctx.indentPerLevel}px`) +const padLeft = computed(() => `${(level - 1) * ctx.indentPerLevel}px`) const rowEl = ref(null) @@ -67,7 +67,7 @@ defineExpose({ rowEl })