fix(modals): make text input full width

This commit is contained in:
Paul Makles 2022-03-04 16:53:10 +00:00
parent 498e76b535
commit d95070d8c7

View file

@ -66,6 +66,7 @@ export function InputModal({
)}
<InputBox
value={value}
style={{ width: "100%" }}
onChange={(e) => setValue(e.currentTarget.value)}
/>
</Modal>