feat: estiloak sortzen ditu

This commit is contained in:
Aitor Urrutia
2022-01-15 12:53:15 +01:00
parent db8cae3bc5
commit ca03625727
10 changed files with 400 additions and 6 deletions

View File

@@ -0,0 +1,21 @@
import { rem } from 'polished';
import styled from 'styled-components';
import { media } from '../ui/theme/media';
import { size } from '../ui/theme/size';
export const Container = styled.div`
margin-left: auto;
margin-right: auto;
padding-left: ${rem(size.tiny)};
padding-right: ${rem(size.tiny)};
width: 100%;
${media.tablet`
width: 744px;
`}
${media.desktop`
width: 1014px;
`}
`;