mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-24 04:33:10 +00:00
85 lines
1.4 KiB
JavaScript
85 lines
1.4 KiB
JavaScript
/**
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
*
|
|
* @emails react-core
|
|
* @flow
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import Link from 'gatsby-link';
|
|
import React from 'react';
|
|
import {colors, media} from 'theme';
|
|
|
|
type Props = {
|
|
isActive: boolean,
|
|
title: string,
|
|
to: string,
|
|
};
|
|
|
|
const HeaderLink = ({isActive, title, to}: Props) => (
|
|
<Link css={[style, isActive && activeStyle]} to={to}>
|
|
{title}
|
|
{isActive && <span css={activeAfterStyle} />}
|
|
</Link>
|
|
);
|
|
|
|
const style = {
|
|
display: 'flex',
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
color: colors.white,
|
|
transition: 'color 0.2s ease-out',
|
|
paddingLeft: 15,
|
|
paddingRight: 15,
|
|
fontWeight: 300,
|
|
|
|
':focus': {
|
|
outline: 0,
|
|
backgroundColor: colors.lighter,
|
|
color: colors.white,
|
|
},
|
|
|
|
[media.size('xsmall')]: {
|
|
paddingLeft: 8,
|
|
paddingRight: 8,
|
|
},
|
|
|
|
[media.between('small', 'medium')]: {
|
|
paddingLeft: 10,
|
|
paddingRight: 10,
|
|
},
|
|
|
|
[media.greaterThan('xlarge')]: {
|
|
paddingLeft: 20,
|
|
paddingRight: 20,
|
|
fontSize: 18,
|
|
|
|
':hover:not(:focus)': {
|
|
color: colors.brand,
|
|
},
|
|
},
|
|
};
|
|
|
|
const activeStyle = {
|
|
color: colors.brand,
|
|
|
|
[media.greaterThan('small')]: {
|
|
position: 'relative',
|
|
},
|
|
};
|
|
|
|
const activeAfterStyle = {
|
|
[media.greaterThan('small')]: {
|
|
position: 'absolute',
|
|
bottom: -1,
|
|
height: 4,
|
|
background: colors.brand,
|
|
left: 0,
|
|
right: 0,
|
|
zIndex: 1,
|
|
},
|
|
};
|
|
|
|
export default HeaderLink;
|