Skip to content
This repository has been archived by the owner on Jul 9, 2021. It is now read-only.

Commit

Permalink
Merge pull request #1552 from dave4506/feature/portal/fix-highlight-s…
Browse files Browse the repository at this point in the history
…tate-back-to-relayers

Added a highlight state to back button
  • Loading branch information
dave4506 authored Feb 1, 2019
2 parents 4986a2f + c9facdf commit 78bdc2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/website/ts/components/portal/back_button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const BackButton = (props: BackButtonProps) => {
<i style={styles.backButtonIcon} className={`zmdi zmdi-arrow-left`} />
</div>
<div style={{ marginLeft: 12, marginRight: 12 }}>
<div style={{ fontSize: 16, color: colors.lightGrey }}>{props.labelText}</div>
<div style={{ fontSize: 16, color: colors.mediumBlue }}>{props.labelText}</div>
</div>
</Island>
</Link>
Expand Down
2 changes: 1 addition & 1 deletion packages/website/ts/components/portal/portal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ export class Portal extends React.Component<PortalProps, PortalState> {
};
return (
<Section
header={<BackButton to={WebsitePaths.Portal} labelText="back to Relayers" />}
header={<BackButton to={WebsitePaths.Portal} labelText="Back to Relayers" />}
body={<Menu selectedPath={routeComponentProps.location.pathname} theme={menuTheme} />}
/>
);
Expand Down

0 comments on commit 78bdc2d

Please sign in to comment.