From 952e638ccd1fa57ac9e4e805beb03d6a9cd64d38 Mon Sep 17 00:00:00 2001 From: chris <kokosias@yahoo.gr> Date: Thu, 1 Oct 2020 02:20:27 +0300 Subject: [PATCH] set background in panelGroup --- wax-prosemirror-layouts/src/layouts/EditoriaLayout.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wax-prosemirror-layouts/src/layouts/EditoriaLayout.js b/wax-prosemirror-layouts/src/layouts/EditoriaLayout.js index 4cb3fa916..97870f5fb 100644 --- a/wax-prosemirror-layouts/src/layouts/EditoriaLayout.js +++ b/wax-prosemirror-layouts/src/layouts/EditoriaLayout.js @@ -11,6 +11,9 @@ import { grid, th } from '@pubsweet/ui-toolkit'; import EditorElements from './EditorElements'; const divider = css` + .panelGroup { + background: ${th('colorBackgroundHue')}; + } .divider { > div { background: ${th('colorBorder')}; @@ -91,7 +94,6 @@ const EditorContainer = styled.div` `; const CommentsContainer = styled.div` - background: ${th('colorBackgroundHue')}; display: flex; flex-direction: column; width: 35%; @@ -107,6 +109,7 @@ const CommentsContainerNotes = styled.div` `; const NotesAreaContainer = styled.div` + background: #fff; display: flex; flex-direction: row; width: 100%; -- GitLab