WriteOn / WriteOnApp

On a mission to create the world's finest writing experience.
https://writeon.io
Apache License 2.0
1 stars 0 forks source link

modal-body padding is covering up bottom half of close X #42

Closed thinq4yourself closed 9 years ago

thinq4yourself commented 9 years ago

The modal-header contains the <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> tag to close the modal, but the modal-body has a padding that cuts off the bottom of the X and render it unavailable to click on.

.modal .modal-body {
    padding: 20px;
}

needs to be changed to

.modal .modal-body {
    margin-top: 20px;
   padding: 0 20px 20px 20px;
}
thinq4yourself commented 9 years ago

Fixed in commit 4d70370 v1.10.4