fix(modals): make text input full width

pull/1049/head
Paul Makles 2022-03-04 16:53:10 +00:00
parent d5a941cfc2
commit cdbe6443ba
1 changed files with 1 additions and 0 deletions

View File

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