Skip to content

Commit

Permalink
fix(PortalContainer): color update
Browse files Browse the repository at this point in the history
  • Loading branch information
niklas-westman authored Nov 3, 2020
1 parent 9077f53 commit b26a1a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/BackBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { TextLink } from '../../common/typography';
const Container = styled.div(({ theme }) => ({
width: '100%',
height: 52,
background: theme.colors.offWhite,
background: theme.colors.lightOffWhite,
color: theme.colors.purple,
fontWeight: 300,

Expand Down
2 changes: 1 addition & 1 deletion src/components/PortalContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { BackBar } from './BackBar';
import styled from '..';

const Container = styled.div(({ theme }) => ({
backgroundColor: theme.colors.offWhite,
backgroundColor: theme.colors.lightOffWhite,
display: 'flex',

[theme.breakpoints.mobileAndLower]: {
Expand Down

0 comments on commit b26a1a1

Please sign in to comment.