File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
features/blocks/inputs/textInput/components Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export const featherIconsBaseProps: IconProps = {
1010} ;
1111
1212export const svgBaseClassName =
13- "stroke-[currentColor] size-4 stroke-2 fill-none" ;
13+ "stroke-[currentColor] size-4 stroke-2 fill-none flex-shrink-0 " ;
1414
1515// 99% of these icons are from Feather icons (https://feathericons.com/)
1616
Original file line number Diff line number Diff line change @@ -20,7 +20,11 @@ export const TextInputNodeContent = ({ options }: Props) => {
2020 options ?. audioClip . saveVariableId ;
2121 return (
2222 < Stack >
23- < Text color = { "gray.500" } h = { options ?. isLong ? "100px" : "auto" } >
23+ < Text
24+ color = { "gray.500" }
25+ h = { options ?. isLong ? "100px" : undefined }
26+ overflowY = "hidden"
27+ >
2428 { options ?. labels ?. placeholder ??
2529 defaultTextInputOptions . labels . placeholder }
2630 </ Text >
You can’t perform that action at this time.
0 commit comments