Fix some paddings

This commit is contained in:
paco
2020-10-08 14:17:20 -06:00
parent a05c15b002
commit 6bc416eb74
4 changed files with 4 additions and 7 deletions

View File

@@ -9,7 +9,7 @@ interface Props {
}
const Hero: FC<Props> = ({ headline, description, className }) => {
const rootClassName = cn(s.root, className)
const rootClassName = cn('bg-black py-12 px-4 md:px-6', className)
return (
<div className={rootClassName}>
<Container>