Layout Changes

This commit is contained in:
Belen Curcio
2020-10-13 10:03:53 -03:00
parent 7efda91b11
commit 283455fc79
5 changed files with 64 additions and 46 deletions

View File

@@ -8,7 +8,7 @@ interface Props {
}
const Container: FC<Props> = ({ children, className, el = 'div' }) => {
const rootClassName = cn('mx-auto max-w-7xl', className)
const rootClassName = cn('mx-auto max-w-7xl px-6 md:px-12', className)
let Component: React.ComponentType<React.HTMLAttributes<
HTMLDivElement