Skip to content

Commit

Permalink
feat: enable content to scale horizontally
Browse files Browse the repository at this point in the history
  • Loading branch information
KatoakDR committed Jan 21, 2024
1 parent df18b1a commit b5a1b96
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion electron/renderer/components/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,15 @@ export const Layout: React.FC<LayoutProps> = (
// And that's not the UX we want.

return (
<EuiPageTemplate grow={true} responsive={[]}>
<EuiPageTemplate
direction="row"
paddingSize="s"
panelled={true}
grow={true}
restrictWidth={false}
responsive={[]}
css={{ height: '100%', maxWidth: 'unset' }}
>
<EuiPageTemplate.Sidebar minWidth={50} paddingSize="xs" responsive={[]}>
<Sidebar />
</EuiPageTemplate.Sidebar>
Expand Down

0 comments on commit b5a1b96

Please sign in to comment.