Changes to the headings

This commit is contained in:
Belen Curcio
2020-10-21 11:36:38 -03:00
parent c2788c256b
commit f530f7d597
4 changed files with 18 additions and 8 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 px-6 md:px-12', className)
const rootClassName = cn('mx-auto max-w-7xl px-3 md:px-6', className)
let Component: React.ComponentType<React.HTMLAttributes<
HTMLDivElement