Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
style: Node label sizing
  • Loading branch information
DrJKL committed Dec 12, 2025
commit af93798e329282e3b6448ab0b6bf138f32b1f44f
4 changes: 2 additions & 2 deletions src/renderer/extensions/vueNodes/components/LGraphNode.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
:data-node-id="nodeData.id"
:class="
cn(
'bg-component-node-background lg-node absolute pb-1 text-sm',
'bg-component-node-background lg-node absolute pb-1 text-base',

'contain-style contain-layout min-w-[225px] min-h-(--node-height) w-(--node-width)',
shapeClass,
Expand Down Expand Up @@ -104,7 +104,7 @@
class="flex flex-1 flex-col gap-1 pb-2"
:data-testid="`node-body-${nodeData.id}`"
>
<NodeSlots :node-data="nodeData" />
<NodeSlots :node-data="nodeData" class="text-sm" />

<NodeWidgets v-if="nodeData.widgets?.length" :node-data="nodeData" />

Expand Down