0
I’m using that React Material Modal. In the examples, when opening the modal, it is wrapped in a blue border, there is some way to remove this effect?
I saw on the Modal api that owns a property disableAutoFocus
but I’ve already set it as "true" and my modal keeps having this blue border:
<Modal
disableAutoFocus="true"
aria-labelledby="transition-modal-title"
aria-describedby="transition-modal-description"
className={classes.modal}
open={open}
onClose={handleClose}
closeAfterTransition
BackdropComponent={Backdrop}
BackdropProps={{
timeout: 500,
}}
>
Is there any way to remove that edge?
In the classname={classes.modal} you cannot take the edge off?
– nanquim