Skip to content

Commit

Permalink
fix: duplicate scrolling bug (#372)
Browse files Browse the repository at this point in the history
  • Loading branch information
Senior-ai authored Jan 3, 2024
1 parent 76fc3d8 commit 63fdd9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/pages/components/PageContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import styled from 'styled-components'
import { MARGIN_MEDIUM } from '../../resources/sizes'

export const PageContainer = styled.div`
overflow-x: hidden;
display: flex;
flex-direction: column;
gap: ${MARGIN_MEDIUM}px;
Expand Down
2 changes: 2 additions & 0 deletions src/pages/components/timeline/TimelineBoard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,14 @@ const Container = styled.div`
display: flex;
`
const StyledContainer = styled.div`
overflow-x: hidden;
flex-direction: column;
margin-right: 8px;
`
const StyledTimeline = styled(Timeline)`
min-width: ${COLUMN_WIDTH}px;
margin-left: 16px;
margin-right: 16px;
`

type TimelineBoardProps = {
Expand Down

0 comments on commit 63fdd9f

Please sign in to comment.