Hi, I’m trying to increase a prompt input width. I’m using the following lib: https://github.com/AdobeXD/plugin-toolkit
I have looked into the code and looks like the prompt input is using id="prompt"
, setting CSS
on this id does nothing for me so I’m lost.
screenshot of the input: https://jmp.sh/nFhk5Nx
here’s the relevant code snippet:
const res = await prompt(
"Main title",
"This is prompt heading..",
"placeholder",
["Cancel", "Submit"],
false
);