rename all files and directories to lowercase
This commit is contained in:
16
packages/dev-tools-pages/ts/components/container.tsx
Normal file
16
packages/dev-tools-pages/ts/components/container.tsx
Normal 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 };
|
Reference in New Issue
Block a user