Improve page paddings

This commit is contained in:
paco
2020-10-08 12:36:00 -06:00
parent 5b597c6a2a
commit 791e8cf18f
3 changed files with 2 additions and 8 deletions

View File

@@ -1,6 +1,5 @@
import cn from 'classnames'
import React, { FC } from 'react'
import s from './Container.module.css'
interface Props {
className?: string
@@ -9,7 +8,7 @@ interface Props {
}
const Container: FC<Props> = ({ children, className, el = 'div' }) => {
const rootClassName = cn(s.root, className)
const rootClassName = cn('mx-auto max-w-screen-xl', className)
let Component: React.ComponentType<React.HTMLAttributes<
HTMLDivElement