Skip to content

Commit

Permalink
Merge pull request stakwork#848 from AhsanFarooqDev/Fix-Vertical-Scro…
Browse files Browse the repository at this point in the history
…ll-on-workspace-planner

Fix Vertical Scroll on workspace planner Page
  • Loading branch information
humansinstitute authored Jan 2, 2025
2 parents cdf83d4 + 0bffd72 commit ab1e340
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/people/WorkSpacePlanner/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ const PlannerContainer = styled.div`
padding: 0;
height: calc(100vh - 65px);
background: ${colors.light.grayish.G950};
overflow: hidden;
overflow-y: auto;
overflow-x: hidden;
`;

const ContentArea = styled.div`
Expand Down Expand Up @@ -54,7 +55,8 @@ const Column = styled.div`
border-radius: 8px;
display: flex;
flex-direction: column;
max-height: 100%;
height: auto;
min-height: 500px;
`;

const ColumnHeader = styled.div`
Expand Down

0 comments on commit ab1e340

Please sign in to comment.