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