4
0
forked from crowetic/commerce

fix cookie consent banner missing on deployment

This commit is contained in:
Franco Arza 2020-10-21 10:55:18 -03:00
parent e6f411f671
commit 8393b3dd5d
2 changed files with 10 additions and 2 deletions

View File

@ -6,12 +6,20 @@ interface Props {
className?: string
title: string
description: string
hide?: boolean
action?: React.ReactNode
}
const Featurebar: FC<Props> = ({ title, description, className, action }) => {
const Featurebar: FC<Props> = ({
title,
description,
className,
action,
hide,
}) => {
const rootClassName = cn(
'transition-transform transform duration-500 ease-out p-6 bg-primary text-base text-sm md:flex flex-row justify-center items-center font-medium fixed bottom-0 w-full z-10',
{ 'translate-y-full': hide },
className
)
return (

View File

@ -38,7 +38,7 @@ const Layout: FC<Props> = ({ children, pageProps }) => {
Accept cookies
</Button>
}
className={cn({ 'translate-y-full': acceptedCookies })}
className={cn({ ['translate-y-full']: acceptedCookies })}
/>
</div>
</CommerceProvider>