mirror of
https://github.com/hazemKrimi/personal-website.git
synced 2026-05-01 18:00:26 +00:00
13 lines
182 B
TypeScript
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;
|