Files
personal-website/components/Container.tsx
T
2023-07-01 00:38:49 +01:00

13 lines
182 B
TypeScript

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