mirror of
https://github.com/baptisteArno/typebot.io.git
synced 2026-06-22 21:06:40 +08:00
💄 Fix some icons shrinking in block node
This commit is contained in:
parent
e6c7d6a4f9
commit
7dc8bfc528
@ -10,7 +10,7 @@ export const featherIconsBaseProps: IconProps = {
|
||||
};
|
||||
|
||||
export const svgBaseClassName =
|
||||
"stroke-[currentColor] size-4 stroke-2 fill-none";
|
||||
"stroke-[currentColor] size-4 stroke-2 fill-none flex-shrink-0";
|
||||
|
||||
// 99% of these icons are from Feather icons (https://feathericons.com/)
|
||||
|
||||
|
||||
@ -20,7 +20,11 @@ export const TextInputNodeContent = ({ options }: Props) => {
|
||||
options?.audioClip.saveVariableId;
|
||||
return (
|
||||
<Stack>
|
||||
<Text color={"gray.500"} h={options?.isLong ? "100px" : "auto"}>
|
||||
<Text
|
||||
color={"gray.500"}
|
||||
h={options?.isLong ? "100px" : undefined}
|
||||
overflowY="hidden"
|
||||
>
|
||||
{options?.labels?.placeholder ??
|
||||
defaultTextInputOptions.labels.placeholder}
|
||||
</Text>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user