Skip to content

Commit

Permalink
fix some design issue
Browse files Browse the repository at this point in the history
  • Loading branch information
chaudhuree committed May 1, 2024
1 parent 86ad8db commit 1951579
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export default function Navbar() {
pathMatchRoute("/signin")
? " border-[1px] border-[#4f1410c8]"
: ""
} py-2 px-[13px] bg-[#FEFEFF] text-primary rounded-[8px] font-semibold text-xl`}
} py-1 md:py-2 px-2 md:px-[13px] bg-[#FEFEFF] text-primary rounded-[8px] font-semibold text-sm md:text-xl`}
>
Login ➝
</NavLink>
Expand Down
2 changes: 1 addition & 1 deletion src/components/ShowData.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export default function ShowData() {
<SwiperSlide key={index} className="h-full">
<Link
to={`/country/${country?.country_Name}/${country?._id}`}
className="card dark:bg-gray-800 dark:text-gray-300 dark:mt-6 card-compact bg-base-100 shadow-xl cursor-pointer"
className="card dark:bg-gray-800 dark:text-gray-300 dark:mt-6 card-compact bg-base-100 shadow-xl cursor-pointer md:min-h-[426px]"
>
<figure className="p-3 rounded-xl">
<div
Expand Down
2 changes: 1 addition & 1 deletion src/pages/ShowAllSpots.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export default function ShowAllSpots() {
disabled={spots.length === totalItems}
onClick={loadmore}
className={`bg-primary text-gray-200 px-6 py-4 rounded-lg text-2xl ${
spots.length === totalItems && "bg-gray-400 dark:bg-gray-300 dark:text-black"
spots.length === totalItems && "hidden"
}`}
>
Load More
Expand Down

0 comments on commit 1951579

Please sign in to comment.