Skip to content

Commit

Permalink
Color tweaks on self page.
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonraimondi committed Jan 28, 2019
1 parent 9d86272 commit a2a0a59
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions src/renderer/app/Myself/Myself.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,25 @@ class Myself extends React.Component<Props> {
<UserContainer>
<UserProfile user={this.user} />
</UserContainer>
<RepositoryList repositoryList={ this.repositoryList }
/>
<RepositoryContainer>
<RepositoryList repositoryList={ this.repositoryList }/>
</RepositoryContainer>
</>;
}
}

const UserContainer = styled.div`
width: 100%;
background-color: ${themeConfig.colors.white}
background-color: ${themeConfig.colors['grey-lightest']}
`;

const RepositoryContainer = styled.div`
width: 100%;
background-color: ${themeConfig.colors['grey-lightest']}
& ul {
background-color: ${themeConfig.colors['grey-lightest']}
border-top: 1px solid ${themeConfig.colors.black};
}
`;

function mapStateToProps(state) {
Expand Down

0 comments on commit a2a0a59

Please sign in to comment.