Skip to content

Commit

Permalink
fix/styles
Browse files Browse the repository at this point in the history
  • Loading branch information
ArunGovil committed Jan 11, 2023
1 parent b3aab94 commit 864a9a7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Link from "next/link";
export default function Footer() {
const logo = require("../public/img/cmdr.png");
return (
<nav className="flex justify-between p-4 items-center w-full max-w-5xl mt-8">
<nav className="flex justify-between p-4 items-center w-full max-w-5xl">
<Link href="/">
<Image src={logo} alt="cmdr" className="w-12" />
</Link>
Expand Down
4 changes: 2 additions & 2 deletions components/Listing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default function Listing() {

return (
<div className="flex flex-col justify-center items-center p-4 w-full max-w-5xl mt-8">
<nav>
<nav ref={sectionRef} className="pt-4">
<ul className="flex">
{tabs.length > 0 &&
tabs.map((item) => (
Expand All @@ -87,7 +87,7 @@ export default function Listing() {
))}
</ul>
</nav>
<section ref={sectionRef} className="mt-8 w-full">
<section className="mt-8 w-full">
{isLoading ? returnLoading() : returnResult()}
</section>
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/SearchListing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface SearchListingProps {
export default function SearchListing({ searchData }: SearchListingProps) {
const returnResult = () => {
return (
<div>
<div className="min-h-[45vh]">
{searchData.length > 0 ? (
<ul className="mb-8 min-h-[80vh]">
{searchData.map((item: any) => (
Expand Down

1 comment on commit 864a9a7

@vercel
Copy link

@vercel vercel bot commented on 864a9a7 Jan 11, 2023

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

cmdr – ./

cmdr.vercel.app
cmdr-git-main-arungovil.vercel.app
cmdr-arungovil.vercel.app

Please sign in to comment.