You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is not with the sizes themselves, but rather applying css from a certain size: @media (min-width)
instead of to a certain size: @media (max-width)
I currently have an issue where the CSS below gets applied to a modal on a screen which is 1920px wide and if change the CSS from min to max in Chrome DevTools, everything works as expected
Current CSS
@media (min-width: 576px)
.modal-dialog {
max-width: 500px;
margin: 30px auto;
}
Dialog's width is too small on bigger screens.
Maybe it should be:
@media (max-width: 576px)
.modal-dialog {
max-width: 500px;
margin: 30px auto;
}
similar problem with form-group
The text was updated successfully, but these errors were encountered: