diff --git a/services/web/frontend/stylesheets/bootstrap-5/components/modal.scss b/services/web/frontend/stylesheets/bootstrap-5/components/modal.scss index 42dbad8836..486ac8884d 100644 --- a/services/web/frontend/stylesheets/bootstrap-5/components/modal.scss +++ b/services/web/frontend/stylesheets/bootstrap-5/components/modal.scss @@ -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; + } } }