diff --git a/web/styles/dark_theme.css b/web/styles/dark_theme.css index f017d8fb10..026277a227 100644 --- a/web/styles/dark_theme.css +++ b/web/styles/dark_theme.css @@ -37,6 +37,10 @@ background-color: hsla(0, 0%, 83%, 0.5); } + .modal__content.simplebar-scrollable-y + .modal__footer { + border-top: 1px solid hsla(0, 0%, 100%, 0.2); + } + .modal-bg, .modal__container { background-color: hsl(212, 28%, 18%); diff --git a/web/styles/modal.css b/web/styles/modal.css index 1878dc270a..286c1e92c1 100644 --- a/web/styles/modal.css +++ b/web/styles/modal.css @@ -83,10 +83,15 @@ } .modal__content { + display: flex; font-size: 1rem; overflow-y: auto; padding: 0 24px; line-height: 1.5; + + &.simplebar-scrollable-y + .modal__footer { + border-top: 1px solid hsl(0, 0%, 87%); + } } .modal__btn { diff --git a/web/templates/dialog_widget.hbs b/web/templates/dialog_widget.hbs index 85e352a384..e7c8268879 100644 --- a/web/templates/dialog_widget.hbs +++ b/web/templates/dialog_widget.hbs @@ -1,6 +1,6 @@