Files
personal-website/components/Container.tsx
T
2021-01-08 19:04:59 +01:00

13 lines
176 B
TypeScript

import styled from 'styled-components';
const Container = styled.div`
width: 85%;
margin: auto;
@media (max-width: 768px) {
width: 95%;
}
`;
export default Container;