fix(builder): Prevent zooming on input field modal

- Add `nowheel` class to Textarea parent div
pull/7962/head^2
Krzysztof Czerwinski 2024-09-03 14:30:35 +02:00
parent 09951fed4b
commit 0454a9a7be
1 changed files with 1 additions and 1 deletions

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}