2024-05-14 11:53:25 -04:00
|
|
|
:root {
|
|
|
|
--bs-heading-color: var(--content-primary);
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
|
|
.modal-dialog {
|
|
|
|
@include modal-md();
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-sm {
|
|
|
|
@include modal-sm();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(md) {
|
|
|
|
.modal-md {
|
|
|
|
@include modal-md();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
.modal-lg {
|
|
|
|
@include modal-lg();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-content {
|
|
|
|
@include shadow-lg();
|
2024-05-21 08:16:37 -04:00
|
|
|
border-radius: var(--border-radius-base);
|
|
|
|
|
|
|
|
.modal-header {
|
|
|
|
.modal-title {
|
|
|
|
@include heading-sm;
|
|
|
|
|
|
|
|
line-height: 35px;
|
|
|
|
}
|
|
|
|
.btn-close {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
2024-05-14 11:53:25 -04:00
|
|
|
|
2024-05-21 08:16:37 -04:00
|
|
|
.modal-footer {
|
|
|
|
padding: var(--spacing-06);
|
|
|
|
gap: var(--spacing-04);
|
|
|
|
> * {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2024-05-14 11:53:25 -04:00
|
|
|
}
|
|
|
|
}
|