diff --git a/web_app/src/components/SidePanel/CV2Options.tsx b/web_app/src/components/SidePanel/CV2Options.tsx index e267941..2df668e 100644 --- a/web_app/src/components/SidePanel/CV2Options.tsx +++ b/web_app/src/components/SidePanel/CV2Options.tsx @@ -62,7 +62,7 @@ const CV2Options = () => { /> { diff --git a/web_app/src/components/SidePanel/DiffusionOptions.tsx b/web_app/src/components/SidePanel/DiffusionOptions.tsx index df52f00..5489584 100644 --- a/web_app/src/components/SidePanel/DiffusionOptions.tsx +++ b/web_app/src/components/SidePanel/DiffusionOptions.tsx @@ -157,7 +157,7 @@ const DiffusionOptions = () => { /> { @@ -237,7 +237,7 @@ const DiffusionOptions = () => { /> { /> { @@ -442,7 +442,7 @@ const DiffusionOptions = () => { // disabled={disable} /> { /> { @@ -473,7 +473,7 @@ const DiffusionOptions = () => { } return ( <> -
+
{ toolTip="The number of denoising steps. More denoising steps usually lead to a higher quality image at the expense of slower inference." /> { /> { @@ -663,7 +663,7 @@ const DiffusionOptions = () => { toolTip="Guidance scale affects how aligned the text prompt and generated image are. Higher value means the prompt and generated image are closely aligned, so the output is a stricter interpretation of the prompt" /> { /> { @@ -737,7 +737,7 @@ const DiffusionOptions = () => { /> { toolTip="How much to blur the mask before processing, in pixels. Make the generated inpainting boundaries appear more natural." /> { /> { @@ -807,7 +807,7 @@ const DiffusionOptions = () => { const renderMaskAdjuster = () => { return ( <> -
+
{ toolTip="Expand or shrink mask. Using the slider to adjust the kernel size for dilation or erosion." /> { /> { @@ -886,7 +886,7 @@ const DiffusionOptions = () => { } return ( -
+
{renderCropper()} {renderExtender()} {renderMaskBlur()} diff --git a/web_app/src/components/SidePanel/LDMOptions.tsx b/web_app/src/components/SidePanel/LDMOptions.tsx index 281372c..b794610 100644 --- a/web_app/src/components/SidePanel/LDMOptions.tsx +++ b/web_app/src/components/SidePanel/LDMOptions.tsx @@ -38,7 +38,7 @@ const LDMOptions = () => { /> { diff --git a/web_app/src/components/ui/input.tsx b/web_app/src/components/ui/input.tsx index f51aff9..d014c64 100644 --- a/web_app/src/components/ui/input.tsx +++ b/web_app/src/components/ui/input.tsx @@ -83,7 +83,7 @@ const NumberInput = React.forwardRef( ref={ref} value={value} onInput={onInput} - className={cn("text-center", className)} + className={cn("text-center h-7 px-1", className)} {...rest} /> )