Merge pull request #18390 from overleaf/rd-bs5-close-position

[web ] Fix the close button position of modal header

GitOrigin-RevId: 79c6cf272f69446cb5849421445f016ea6d53403
This commit is contained in:
Rebeka Dekany 2024-05-21 14:16:37 +02:00 committed by Copybot
parent 74f0483157
commit 5af6acde2b

View file

@ -26,10 +26,24 @@
.modal-content {
@include shadow-lg();
}
border-radius: var(--border-radius-base);
.modal-header {
.btn-close {
margin: var(--spacing-00);
.modal-header {
.modal-title {
@include heading-sm;
line-height: 35px;
}
.btn-close {
margin-right: 0;
}
}
.modal-footer {
padding: var(--spacing-06);
gap: var(--spacing-04);
> * {
margin: 0;
}
}
}