Reputation: 5309
How do I change the width of the modal? its too small
import Modal from 'react-responsive-modal';
<Modal style={{"width": "800px"}} open={open} onClose={this.onCloseModal}>
</Modal>
Upvotes: 0
Views: 106
Reputation: 2042
style prop is wrong, change it to styles. Refer to the documentaion: react-responsive-modal
<Modal styles={{modal: { width: "800px"}}}></Modal>
Upvotes: 1