Skip to content

Commit

Permalink
fix(Page): remove padding from PageContent
Browse files Browse the repository at this point in the history
  • Loading branch information
awinogradov committed Jan 20, 2023
1 parent ae0c2c7 commit 49d2b8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const StyledContent = styled.div`
`;

export const PageContent = styled.div`
padding: 10px 40px 20px 40px;
padding: 10px 40px 0 40px;
`;

export const PageActions = styled.div`
Expand Down
2 changes: 1 addition & 1 deletion src/pages/teams/[slug]/goals.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ const fetcher = createFetcher((_, slug, states = [], query = '', tags = [], owne
}));

const StyledGoalsList = styled.div`
padding: 0;
padding: 0 0 20px 0;
margin: 0 -20px;
`;

Expand Down

0 comments on commit 49d2b8e

Please sign in to comment.