aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--packages/website/ts/pages/jobs/open_positions.tsx4
-rw-r--r--packages/website/ts/style/colors.ts1
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)',