fix(builder): Prevent zooming on input field modal

- Add `nowheel` class to Textarea parent div
This commit is contained in:
Krzysztof Czerwinski
2024-09-03 14:30:35 +02:00
parent 09951fed4b
commit 0454a9a7be

View File

@@ -62,7 +62,7 @@ const InputModalComponent: FC<ModalProps> = ({
<h2 className="mb-4 text-center text-lg font-semibold">
{title || "Enter input text"}
</h2>
<div className="relative flex-grow">
<div className="nowheel relative flex-grow">
<Textarea
className="h-full min-h-[200px] w-full resize-none"
value={tempValue}