Skip to content

Commit

Permalink
vertical scroll
Browse files Browse the repository at this point in the history
  • Loading branch information
giuliohome committed Oct 6, 2023
1 parent 15d634b commit ffe9ddc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/web/src/layout/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const Layout: FC = (): ReactElement => {
<Header></Header>
</Stack.Item>
<PanelGroup autoSaveId="mypaneltodo" direction="horizontal">
<Panel>
<Panel style={{overflowY:'auto'}}>
<Stack styles={sidebarStackStyles} >
<Sidebar
selectedList={appContext.state.selectedList}
Expand All @@ -65,7 +65,7 @@ const Layout: FC = (): ReactElement => {
</Stack>
</Panel>
<PanelResizeHandle style={{width: '10px', background: 'white'}}/>
<Panel>
<Panel style={{overflowY:'auto'}}>
<Stack styles={mainStackStyles} >
<Routes>
<Route path="/lists/:listId/items/:itemId" element={<HomePage />} />
Expand All @@ -76,7 +76,7 @@ const Layout: FC = (): ReactElement => {
</Stack>
</Panel>
<PanelResizeHandle style={{width: '10px', background: 'white'}} />
<Panel>
<Panel style={{overflowY:'auto'}}>
<Stack styles={sidebarStackStyles} >
<TodoItemDetailPane
item={appContext.state.selectedItem}
Expand Down

0 comments on commit ffe9ddc

Please sign in to comment.