Remove mobile background, offset lightbar on mobile

This commit is contained in:
Jip Fr 2023-08-21 12:53:28 +02:00
parent 41b6c84fbf
commit fe7c496e0a
1 changed files with 2 additions and 2 deletions

View File

@ -19,12 +19,12 @@ export function Navigation(props: NavigationProps) {
return ( return (
<> <>
<div className="absolute inset-x-0 top-0 flex h-[88px] items-center justify-center"> <div className="absolute inset-x-0 top-0 flex h-[88px] items-center justify-center">
<div className="absolute inset-x-0 flex items-center"> <div className="absolute inset-x-0 mt-20 flex items-center sm:mt-0">
<Lightbar /> <Lightbar />
</div> </div>
</div> </div>
<div <div
className="fixed left-0 right-0 top-0 z-10 min-h-[150px] bg-gradient-to-b from-background-main via-background-main to-transparent sm:from-transparent" className="fixed left-0 right-0 top-0 z-10 min-h-[150px]"
style={{ style={{
top: `${bannerHeight}px`, top: `${bannerHeight}px`,
}} }}