August Skare e5d3e3b33a
Feature/tweaks (#8)
* show copy button on focs

* change base link styling

* text-decoration underline on basic links

* basic hover and focus styles on button and tabs

* add links in footer

* change breakpoints vars

* medium breakpoint on footer
2018-10-25 10:54:53 +01:00

38 lines
888 B
TypeScript

import styled from 'styled-components';
import { colors } from '../variables';
import { media } from 'ts/variables';
import { withContext, Props } from './withContext';
interface ButtonProps extends Props {
large?: boolean;
}
const Button =
styled.button <
ButtonProps >
`
font-family: inherit;
font-size: ${props => (props.large ? '1.125rem' : '.875rem')};
font-weight: 500;
white-space: nowrap;
vertical-align: middle;
background-color: ${props => props.colors.secondary};
color: ${colors.black};
border: 0;
border-radius: 5rem;
padding: ${props => (props.large ? '1.125rem 2.375rem' : '.5625rem 1.25rem')};
display: inline-block;
:hover, :focus {
color: ${props => props.colors.main};
}
${props =>
props.large &&
media.small`
font-size: 1rem;
padding: .875rem 1.5rem;
`}
`;
export default withContext(Button);