Skip to content

Commit

Permalink
Fix footer position for desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
JunichiSugiura committed Oct 16, 2024
1 parent 126e57d commit b726b99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/profile/src/components/layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function ResponsiveWrapper({ children }: PropsWithChildren) {
<>
{/* for desktop */}
<div className="hidden md:flex h-screen flex-col items-center justify-center overflow-x-hidden">
<div className="w-desktop h-desktop border border-border rounded-xl overflow-hidden flex flex-col">
<div className="w-desktop h-desktop border border-border rounded-xl overflow-hidden flex flex-col relative">
{children}
</div>
</div>
Expand Down Expand Up @@ -122,7 +122,7 @@ export function LayoutFooter({
return (
<div
className={cn(
"fixed bottom-0 left-0 right-0 flex flex-col px-6 py-4 gap-y-4 ",
"flex flex-col px-6 py-4 gap-y-4 w-full absolute left-0 bottom-0",
className,
)}
>
Expand Down

0 comments on commit b726b99

Please sign in to comment.