Skip to content
Merged

Dev #105

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 src/app/(main-layout)/(home)/blogs/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const BlogDetailsPage = () => {
return (
<div>
<GradientBannerCustom>
<h1 className="text-left text-white pt-10 md:pt-14 font-semibold text-base sm:text-lg md:text-xl lg:text-2xl xl:text-3xl leading-tight">
<h1 className="text-left text-white md:pt-14 font-semibold text-base sm:text-lg md:text-xl lg:text-2xl xl:text-3xl leading-tight">
{blog.blogTitle}
</h1>
</GradientBannerCustom>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const ItemExtraDetails = ({ extraDetails }: ItemExtraDetailsProps) => {

{/* Grid layout for key-value pairs */}
{section.items.length > 0 && (
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-x-6 gap-y-3 mb-4">
<div className="grid grid-cols-2 sm:grid-cols-2 lg:grid-cols-3 gap-x-6 gap-y-3 mb-4">
{section.items.map((item, itemIndex) => (
<div key={itemIndex} className="flex flex-col">
<span className="text-xs md:text-sm font-semibold text-gray-600 uppercase tracking-wide">
Expand Down
2 changes: 1 addition & 1 deletion src/app/(main-layout)/(home)/search-listing/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const SearchListingDetailsPage = () => {
return (
<div>
<GradientBannerCustom showNav={false}>
<div className="text-white flex flex-col md:flex-row items-start justify-between gap-3 w-full pt-20 md:pt-24">
<div className="text-white flex flex-row md:flex-row items-start justify-between gap-3 w-full md:pt-24 px-4 pt-2">
<div className="flex flex-row items-center justify-start gap-3 font-semibold text-sm md:text-xl lg:text-2xl">
<FaArrowLeft
className="cursor-pointer"
Expand Down
2 changes: 1 addition & 1 deletion src/app/(main-layout)/(home)/search-listing/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ const SearchListingPage = () => {
<div className="md:hidden my-4 flex justify-end">
<button
onClick={() => setIsDrawerOpen(true)}
className="bg-cyan-500 text-white px-4 py-2 rounded-lg hover:bg-cyan-600 transition-colors"
className="bg-cyan-500 text-white px-4 py-2 rounded-lg hover:bg-cyan-600 transition-colors w-full"
>
Filter
</button>
Expand Down
Loading