diff options
author | Brandon Millman <brandon.millman@gmail.com> | 2018-07-19 05:47:02 +0800 |
---|---|---|
committer | Brandon Millman <brandon.millman@gmail.com> | 2018-07-19 05:47:02 +0800 |
commit | 938aabde3db0044c658e86765e1bbdbdce4e4a17 (patch) | |
tree | 6c68f9bc4e1d690e1906a748fb14dffd80cc98e2 /packages | |
parent | c7f196b57998eab35358ce719b7364850dd68bce (diff) | |
download | dexon-sol-tools-938aabde3db0044c658e86765e1bbdbdce4e4a17.tar dexon-sol-tools-938aabde3db0044c658e86765e1bbdbdce4e4a17.tar.gz dexon-sol-tools-938aabde3db0044c658e86765e1bbdbdce4e4a17.tar.bz2 dexon-sol-tools-938aabde3db0044c658e86765e1bbdbdce4e4a17.tar.lz dexon-sol-tools-938aabde3db0044c658e86765e1bbdbdce4e4a17.tar.xz dexon-sol-tools-938aabde3db0044c658e86765e1bbdbdce4e4a17.tar.zst dexon-sol-tools-938aabde3db0044c658e86765e1bbdbdce4e4a17.zip |
Update hr color
Diffstat (limited to 'packages')
-rw-r--r-- | packages/website/ts/pages/jobs/open_positions.tsx | 4 | ||||
-rw-r--r-- | packages/website/ts/style/colors.ts | 1 |
2 files changed, 1 insertions, 4 deletions
diff --git a/packages/website/ts/pages/jobs/open_positions.tsx b/packages/website/ts/pages/jobs/open_positions.tsx index a5a1bf5c7..99242c6c5 100644 --- a/packages/website/ts/pages/jobs/open_positions.tsx +++ b/packages/website/ts/pages/jobs/open_positions.tsx @@ -45,9 +45,7 @@ export class OpenPositions extends React.Component<OpenPositionsProps, OpenPosit return ( <Container id={this.props.hash} className="mx-auto pb4 px3" maxWidth="1200px"> {!isSmallScreen && ( - <hr - style={{ border: 0, borderTop: 1, borderStyle: 'solid', borderColor: colors.jobsPageDivider }} - /> + <hr style={{ border: 0, borderTop: 1, borderStyle: 'solid', borderColor: colors.beigeWhite }} /> )} <Container marginTop="64px" marginBottom="50px"> <Text fontFamily="Roboto Mono" fontSize="24px" fontColor={colors.black}> diff --git a/packages/website/ts/style/colors.ts b/packages/website/ts/style/colors.ts index 60a18ce14..349845a09 100644 --- a/packages/website/ts/style/colors.ts +++ b/packages/website/ts/style/colors.ts @@ -10,7 +10,6 @@ const appColors = { drawerMenuBackground: '#4a4a4a', menuItemDefaultSelectedBackground: '#424242', jobsPageBackground: sharedColors.grey50, - jobsPageDivider: '#cccccc', jobsPageOpenPositionRow: sharedColors.grey100, metaMaskOrange: '#f68c24', metaMaskTransparentOrange: 'rgba(255, 248, 242, 0.8)', |