Skip to content

Commit

Permalink
fix: Query Editor toolbar folds to menu to fit the window size (#2481)
Browse files Browse the repository at this point in the history
  • Loading branch information
bk201- authored Dec 4, 2024
1 parent 086f08d commit 152d3b7
Show file tree
Hide file tree
Showing 10 changed files with 1,160 additions and 591 deletions.
2 changes: 1 addition & 1 deletion src/webviews/QueryEditor/QueryEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const useStyles = makeStyles({
root: {
display: 'grid',
gridTemplateRows: '100vh',
minWidth: '900px',
// minWidth: '520px',
},
});

Expand Down
4 changes: 2 additions & 2 deletions src/webviews/QueryEditor/QueryPanel/QueryPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import { makeStyles } from '@fluentui/react-components';
import { QueryMonaco } from './QueryMonaco';
import { QueryToolbar } from './QueryToolbar';
import { QueryToolbarOverflow } from './QueryToolbarOverflow';

const useClasses = makeStyles({
monacoContainer: {
Expand All @@ -26,7 +26,7 @@ export const QueryPanel = () => {

return (
<section className={classes.container}>
<QueryToolbar />
<QueryToolbarOverflow />
<section className={classes.monacoContainer}>
<QueryMonaco />
</section>
Expand Down
207 changes: 0 additions & 207 deletions src/webviews/QueryEditor/QueryPanel/QueryToolbar.tsx

This file was deleted.

Loading

0 comments on commit 152d3b7

Please sign in to comment.