diff options
-rw-r--r-- | packages/website/ts/components/dropdowns/developers_drop_down.tsx | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/packages/website/ts/components/dropdowns/developers_drop_down.tsx b/packages/website/ts/components/dropdowns/developers_drop_down.tsx index a314f0f54..af0ae825c 100644 --- a/packages/website/ts/components/dropdowns/developers_drop_down.tsx +++ b/packages/website/ts/components/dropdowns/developers_drop_down.tsx @@ -119,26 +119,26 @@ export class DevelopersDropDown extends React.Component<DevelopersDropDownProps, <div>{this._renderLinkSection(usefulLinksToLinkInfo)}</div> </div> </div> - <div + <Link + to={WebsitePaths.Docs} style={{ - padding: '0.8rem', - textAlign: 'center', - backgroundColor: colors.lightBgGrey, - borderBottomLeftRadius: 4, - borderBottomRightRadius: 4, + color: colors.lightBlueA700, + fontWeight: 'bold', + fontSize: 14, }} > - <Link - to={WebsitePaths.Docs} + <div style={{ - color: colors.lightBlueA700, - fontWeight: 'bold', - fontSize: 14, + padding: '0.8rem', + textAlign: 'center', + backgroundColor: colors.lightBgGrey, + borderBottomLeftRadius: 4, + borderBottomRightRadius: 4, }} > {this.props.translate.get(Key.ViewAllDocumentation, Deco.Upper)} - </Link> - </div> + </div> + </Link> </div> ); return dropdownMenu; |