Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

fix: footer unclickable and misaligned #703

Merged
merged 1 commit into from
Feb 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export default function Footer(props: IFooterProps) {
</Link>
</div>
<div className="flex justify-center lg:justify-end">
<div className="mt-10 text-white sm:w-1/2 lg:mt-0">
<div className="mt-10 text-white lg:mt-0">
<Social />
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/SpotlightShape/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export default function SpotlightShape() {
return (
<div className="absolute -top-[5vh] h-screen w-screen opacity-90 blur-md">
<div className="pointer-events-none absolute -top-[5vh] h-screen w-screen opacity-90 blur-md">
{/* Desktop spotlight effect */}
<div
className="hidden h-full w-full bg-gradient-to-b from-[#330bff] to-transparent lg:block"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default function ResetPasswordForm() {
<Button
type="button"
title="BACK TO LOGIN"
className="border-quinary bg-quinary text-secondary p-4"
className="border-quinary bg-quinary p-4 text-secondary"
/>
</Link>
</div>
Expand Down
Loading