0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-03-15 15:29:22 +01:00

Fix border radii

This commit is contained in:
Martijn Cuppens 2020-02-27 18:34:42 +01:00 committed by XhmikosR
parent 062002d952
commit 05fb3905e6

View File

@ -80,7 +80,6 @@
flex-direction: column; flex-direction: column;
width: 100%; // Ensure `.modal-content` extends the full width of the parent `.modal-dialog` width: 100%; // Ensure `.modal-content` extends the full width of the parent `.modal-dialog`
// counteract the pointer-events: none; in the .modal-dialog // counteract the pointer-events: none; in the .modal-dialog
height: 100%;
color: $modal-content-color; color: $modal-content-color;
pointer-events: auto; pointer-events: auto;
background-color: $modal-content-bg; background-color: $modal-content-bg;
@ -215,13 +214,22 @@
margin: 0; margin: 0;
.modal-content { .modal-content {
height: 100%;
border: 0; border: 0;
@include border-radius(0); @include border-radius(0);
} }
.modal-header {
@include border-radius(0);
}
.modal-body { .modal-body {
overflow-y: auto; overflow-y: auto;
} }
.modal-footer {
@include border-radius(0);
}
} }
} }
} }