/* @flow */ import React from 'react'; import styled from 'styled-components'; import { NavLink } from 'react-router-dom'; import colors from 'config/colors'; const Wrapper = styled.header` width: 100%; height: 52px; background: ${colors.HEADER}; svg { fill: ${colors.WHITE}; height: 28px; width: 100px; } `; const LayoutWrapper = styled.div` width: 100%; height: 100%; max-width: 1170px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; @media screen and (max-width: 1170px) { padding: 0 25px; } `; const Left = styled.div` flex: 1; display: flex; justify-content: flex-start; `; const Right = styled.div``; const A = styled.a` color: ${colors.WHITE}; margin-left: 24px; transition: all .1s ease-in; &:visited { color: ${colors.WHITE}; margin-left: 24px; } &:first-child { margin: 0px; } &:hover, &:active { color: ${colors.TEXT_SECONDARY}; } `; const Header = (): React$Element => ( Trezor Wiki Blog Support ); export default Header;