Dropdown NavBar

This commit is contained in:
Belen Curcio
2020-10-21 16:41:53 -03:00
parent 5bbe5d21b0
commit df6c9070e5
4 changed files with 81 additions and 56 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-3 md:px-6', className)
const rootClassName = cn('mx-auto max-w-7xl px-6', className)
let Component: React.ComponentType<React.HTMLAttributes<
HTMLDivElement