Skip to content

Commit

Permalink
Merge pull request #2088 from Shoaibdev7/sidebar-should-not-scroll-si…
Browse files Browse the repository at this point in the history
…de-ways

Fixed: AI Chat - Remove Horizontal Scrollbar from Sidebar
  • Loading branch information
Rassl authored Aug 28, 2024
2 parents f521bcc + a3e247c commit ba9db8c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/components/App/SideBar/AiView/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,9 @@ const Wrapper = styled(Flex)(({ theme }) => ({
},
}))

const ScrollWrapper = styled(Flex)(() => ({
overflow: 'auto',
flex: 1,
width: '100%',
}))
const ScrollWrapper = styled(Flex)`
overflow-y: auto;
overflow-x: hidden;
flex: 1;
width: 100%;
`

0 comments on commit ba9db8c

Please sign in to comment.