Skip to content

Commit

Permalink
EditorTabPage - overflowY, and body background
Browse files Browse the repository at this point in the history
  • Loading branch information
isublimity committed May 12, 2022
1 parent 81ff357 commit 185263b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/src/assets/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@import './reset-defaults.css';
body {
font-size: 13px;
background: black;
background: #404040;
/* line-height: 1.15; */
/* color: font-color; */
/* fill: font-color; */
Expand Down
4 changes: 2 additions & 2 deletions app/src/components/Dashboard/EditorTabPage/EditorTabPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export default class EditorTabPage extends React.Component<Props> {
return (
<React.Fragment>
<FullScreener enter={this.state.enterFullScreen}>
<Splitter split="horizontal" minSize={100} defaultSize={350}>
<Splitter split="horizontal" minSize={100} defaultSize={300}>
<SqlEditor
content={model.content}
onContentChange={this.onContentChange}
Expand All @@ -192,7 +192,7 @@ export default class EditorTabPage extends React.Component<Props> {
pinned={model.pinnedResult}
onAction={this.onResultTabAction}
>
<TabsTabPane key="table" tab="Data / Table">
<TabsTabPane key="table" tab="Data / Table" style={{ overflowY: "auto"}}>
{!!store.uiStore.executingQueries.length && (
<Progress queries={store.uiStore.executingQueries} />
)}
Expand Down

0 comments on commit 185263b

Please sign in to comment.