Skip to content

Commit

Permalink
Fix: Restrict Timeline Feed scrolling to its column on /me route
Browse files Browse the repository at this point in the history
  • Loading branch information
iamsmruti committed Jan 8, 2025
1 parent cf48ae2 commit ea3d2d3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/client/components/MyDashboardTimeline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ const TimelineFeed = styled('div')({
display: 'flex',
justifyContent: 'center',
flex: 1,
overflow: 'auto',
paddingLeft: DashTimeline.MIN_PADDING,
paddingRight: DashTimeline.MIN_PADDING,
paddingTop: DashTimeline.MIN_PADDING
Expand All @@ -34,7 +35,7 @@ export const TimelineFeedItems = styled('div')({
const FeedAndDrawer = styled('div')({
display: 'flex',
height: '100%',
overflow: 'auto'
overflow: 'hidden'
})

const MyDashboardTimeline = (props: Props) => {
Expand Down

0 comments on commit ea3d2d3

Please sign in to comment.