aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/editor/EditorPane.tsx
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-09-08 02:51:52 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-09-08 15:37:49 +0200
commit6d1f78af96e4c0d1ad76c5791b93b0c2d83810e1 (patch)
treec005aca6da89629fac5d4001a475babd2fcd590c /subprojects/frontend/src/editor/EditorPane.tsx
parentfeat(frontend): check for updates periodically (diff)
downloadrefinery-6d1f78af96e4c0d1ad76c5791b93b0c2d83810e1.tar.gz
refinery-6d1f78af96e4c0d1ad76c5791b93b0c2d83810e1.tar.zst
refinery-6d1f78af96e4c0d1ad76c5791b93b0c2d83810e1.zip
feat(frontend): editor area scroll shadow styling
Diffstat (limited to 'subprojects/frontend/src/editor/EditorPane.tsx')
-rw-r--r--subprojects/frontend/src/editor/EditorPane.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/subprojects/frontend/src/editor/EditorPane.tsx b/subprojects/frontend/src/editor/EditorPane.tsx
index e433e714..bcd324e5 100644
--- a/subprojects/frontend/src/editor/EditorPane.tsx
+++ b/subprojects/frontend/src/editor/EditorPane.tsx
@@ -43,7 +43,7 @@ export default observer(function EditorPane(): JSX.Element {
43 <EditorButtons editorStore={editorStore} /> 43 <EditorButtons editorStore={editorStore} />
44 {showGenerateButton && <GenerateButton editorStore={editorStore} />} 44 {showGenerateButton && <GenerateButton editorStore={editorStore} />}
45 </Toolbar> 45 </Toolbar>
46 <Box flexGrow={1} flexShrink={1} overflow="auto"> 46 <Box display="flex" flexGrow={1} flexShrink={1} overflow="auto">
47 {editorStore === undefined ? ( 47 {editorStore === undefined ? (
48 <EditorLoading /> 48 <EditorLoading />
49 ) : ( 49 ) : (