orgen-theme/assets/scss/custom/_modal.scss
2023-04-06 16:58:33 +08:00

29 lines
497 B
PHP

.modal-content {
border: 0;
@if $enable-rounded {
border-radius: $modal-content-border-radius;
} @else {
border-radius: 0;
}
.modal-header .close{
margin: -1.25rem -1.25rem -1.25rem auto;
}
}
.modal-fluid {
.modal-dialog {
margin-top: 0;
margin-bottom: 0;
}
.modal-content {
border-radius: 0;
}
}
@each $color, $value in $theme-colors {
.modal-#{$color} {
@include modal-variant($value);
}
}