/* @flow */ import React from 'react'; import styled from 'styled-components'; import colors from 'config/colors'; const Wrapper = styled.header` width: 100%; height: 52px; background: ${colors.HEADER}; svg { fill: ${colors.WHITE}; height: 28px; width: 100px; flex: 1; } `; const LinkWrapper = styled.div``; const LayoutWrapper = styled.div` width: 100%; height: 100%; max-width: 1170px; margin: 0 auto; display: flex; align-items: center; @media screen and (max-width: 1170px) { padding: 0 25px; } `; const A = styled.a` color: ${colors.WHITE}; margin-left: 24px; &:visited { color: ${colors.WHITE}; margin-left: 24px; } &:first-child { margin: 0px; } &:hover, &:active { color: ${colors.TEXT_SECONDARY}; } `; const Header = (): React$Element => ( TREZOR Docs Blog Support ); export default Header;