Skip to content
Snippets Groups Projects
Unverified Commit 0ea42f7d authored by Miranda Fluharty's avatar Miranda Fluharty
Browse files

Define modal first and last child border-radius

Use $modal-border-radius for all modal border radius definitions
parent 26f7e8a1
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -87,7 +87,17 @@ body.modal-open {
background-color: $black-transparent;
 
.modal-content {
border-radius: 0.25rem;
border-radius: $modal-border-radius;
*:first-child {
border-top-left-radius: $modal-border-radius;
border-top-right-radius: $modal-border-radius;
}
*:last-child {
border-bottom-left-radius: $modal-border-radius;
border-bottom-right-radius: $modal-border-radius;
}
}
 
@include media-breakpoint-up(sm) {
Loading
Loading
Loading
Loading
@@ -807,6 +807,7 @@ Modals
*/
$modal-body-height: 80px;
$modal-border-color: #e9ecef;
$modal-border-radius: 0.25rem;
 
$priority-label-empty-state-width: 114px;
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment