Skip to content

Commit

Permalink
footer fix
Browse files Browse the repository at this point in the history
  • Loading branch information
januff committed Feb 19, 2023
1 parent 0b62ed6 commit a7a3de0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Link from "next/link";

export default function Footer() {
return (
<footer className="text-center text-xs h-10 sm:h-20 w-full sm:pt-2 pt-4 mt-5 flex sm:flex-row flex-col justify-between items-center px-3 space-y-3 sm:mb-0 mb-3">
<footer className="text-center text-xs h-10 sm:h-20 w-full sm:pt-2 pt-4 mt-5 flex flex-row justify-between items-center px-3 space-y-3 sm:mb-0 mb-3">
<div>
Powered by{" "}
<a
Expand Down
4 changes: 2 additions & 2 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,15 @@ const Home: NextPage = () => {

{!loading && (
<button
className="bg-black rounded-xl text-slate-200 font-medium px-4 py-1 sm:mt-5 mt-5 hover:bg-black/80 w-full tracking-tighter"
className="bg-black rounded-xl text-slate-200 font-medium px-4 py-1 sm:mt-4 mt-4 hover:bg-black/80 w-full tracking-tighter"
onClick={(e) => generateAdvice(e)}
>
SHOW ME THE WAY
</button>
)}
{loading && (
<button
className="bg-black rounded-xl text-white font-medium px-4 py-2 sm:mt-5 mt-5 hover:bg-black/80 w-full"
className="bg-black rounded-xl text-white font-medium px-4 py-2 sm:mt-4 mt-4 hover:bg-black/80 w-full"
disabled
>
<LoadingDots color="white" style="large" />
Expand Down

1 comment on commit a7a3de0

@vercel
Copy link

@vercel vercel bot commented on a7a3de0 Feb 19, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.