diff --git a/services/web/frontend/stylesheets/bootstrap-5/pages/editor/logs.scss b/services/web/frontend/stylesheets/bootstrap-5/pages/editor/logs.scss index d3be1e2960..3a4580a1d5 100644 --- a/services/web/frontend/stylesheets/bootstrap-5/pages/editor/logs.scss +++ b/services/web/frontend/stylesheets/bootstrap-5/pages/editor/logs.scss @@ -1,10 +1,16 @@ -@import '../../foundations/colors'; +:root { + --logs-pane-bg: var(--bg-dark-secondary); +} + +@include theme('light') { + --logs-pane-bg: var(--bg-light-secondary); +} .logs-pane { position: absolute; inset: 0; overflow-y: auto; - background-color: var(--bg-dark-secondary); + background-color: var(--logs-pane-bg); z-index: 11; // above the PDF viewer + controls top: var(--toolbar-small-height);