Bootstrap: .modal-dialog on narrow SM screen has no horizontal margin

Created on 26 May 2016  路  3Comments  路  Source: twbs/bootstrap

Most helpful comment

(The test requires the viewport to be between 544px and 599px.)

All 3 comments

(The test requires the viewport to be between 544px and 599px.)

A left/right padding to the .modal-dialog would do the job: https://jsfiddle.net/x1qpe0mm/1/

@media (min-width: 544px) {
  .modal-dialog {
    max-width: 600px;
    margin: 30px auto;
    padding: 0 10px;
  }
}
Was this page helpful?
0 / 5 - 0 ratings