phongyewtong
phongyewtong

Reputation: 5309

How do I change the width of the modal? its too small. react-responsive-modal

How do I change the width of the modal? its too small

enter image description here

import Modal from 'react-responsive-modal';

 <Modal style={{"width": "800px"}} open={open} onClose={this.onCloseModal}>


 </Modal>

Upvotes: 0

Views: 106

Answers (1)

Fatemeh Qasemkhani
Fatemeh Qasemkhani

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

Related Questions