We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2332d6c commit e740af2Copy full SHA for e740af2
electron/renderer/components/layout.tsx
@@ -28,9 +28,14 @@ export const Layout: React.FC<LayoutProps> = (
28
grow={true}
29
restrictWidth={false}
30
responsive={[]}
31
- css={{ height: '100%', maxWidth: 'unset' }}
+ css={{ height: '100%', maxWidth: 'unset', display: 'flex' }}
32
>
33
- <EuiPageTemplate.Sidebar minWidth={50} paddingSize="xs" responsive={[]}>
+ <EuiPageTemplate.Sidebar
34
+ minWidth={50}
35
+ paddingSize="xs"
36
+ responsive={[]}
37
+ css={{ height: '100vh', position: 'sticky', top: 0 }}
38
+ >
39
<Sidebar />
40
</EuiPageTemplate.Sidebar>
41
<EuiPageTemplate.Section paddingSize="none" grow={true}>
0 commit comments