Skip to content

Commit

Permalink
fix: page background color (#3781)
Browse files Browse the repository at this point in the history
  • Loading branch information
sashuk authored Aug 8, 2023
1 parent a62e9c4 commit d430b42
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/poor-buckets-provide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@toptal/picasso': patch
---

- align page background color with BASE design
4 changes: 2 additions & 2 deletions packages/picasso/src/PageContent/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ export default ({ layout, palette }: Theme) =>
height: '100%',
flexGrow: 1,
maxWidth: layout.contentWidth,
backgroundColor: palette.common.white,
backgroundColor: palette.grey.lightest,
backgroundClip: 'content-box',
},
hasSidebar: {
background: `linear-gradient(90deg, ${palette.grey.lighter} 50%, ${palette.common.white} 50%)`,
background: `linear-gradient(90deg, ${palette.grey.lighter} 50%, ${palette.grey.lightest} 50%)`,
},
wide: {
maxWidth: layout.contentWidthWide,
Expand Down

0 comments on commit d430b42

Please sign in to comment.