Skip to content

Commit

Permalink
Fix border radii
Browse files Browse the repository at this point in the history
  • Loading branch information
MartijnCuppens authored and XhmikosR committed Apr 1, 2020
1 parent 062002d commit 05fb390
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion scss/_modal.scss
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@
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;
Expand Down Expand Up @@ -215,13 +214,22 @@
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);
}
}
}
}

0 comments on commit 05fb390

Please sign in to comment.