fix(modals): make text input full width

This commit is contained in:
Paul Makles
2022-03-04 16:53:10 +00:00
parent d5a941cfc2
commit cdbe6443ba

View File

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