rename all files and directories to lowercase

This commit is contained in:
August Skare
2018-11-19 17:27:00 +01:00
parent 881655bb57
commit 31d07fdac8
30 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import styled from 'styled-components';
interface ContainerProps {
wide?: boolean;
}
const Container =
styled.div <
ContainerProps >
`
max-width: 77.5rem;
margin: 0 auto;
width: ${props => (props.wide ? '100%' : 'calc(100% - 5rem)')};
`;
export { Container };