DEV Community

Discussion on: The right way to resize Reactstrap's Modal component.

Collapse
 
lolanator profile image
lolanator • Edited

Okay so i tried EVERYTHING to try and resize it, this example wouldn't work for me^^

I was trying to override the .modal-dialog class and nothing would work, I realised the syntax had to be the exact same as it was in my developer tools.

so i added @media (min-width: 576px) {
.modal-dialog {
max-width: fit-content;
margin: 1.75rem auto;
}
}
and this worked !!