revert unwanted change

This commit is contained in:
Guilhem
2025-09-17 08:11:17 +01:00
parent 3265217f27
commit 9134cc75c2
2 changed files with 5 additions and 3 deletions
@@ -367,8 +367,10 @@
{#if arg != undefined}
<div
class={twMerge(
'p-4 bg-nord-600 ml-2 relative hover:bg-nord-500 transition-all duration-200 rounded-sm',
$propPickerConfig?.propName == argName ? 'bg-nord-500 border-l-4 border-blue-500 z-50 ' : '',
'pl-2 pt-2 pb-2 ml-2 relative hover:bg-surface hover:shadow-md transition-all duration-200',
$propPickerConfig?.propName == argName
? 'bg-surface border-l-4 border-blue-500 shadow-md rounded-l-md z-50 '
: 'hover:rounded-md',
className
)}
>
@@ -99,7 +99,7 @@
{#if keys.length > 0}
{#each keys as argName, index (argName)}
{#if (!filter || filter.includes(argName)) && Object.keys(schema.properties ?? {}).includes(argName)}
<div class="mb-8 relative">
<div class="pt-2 relative">
<InputTransformForm
{previousModuleId}
bind:arg={args[argName]}