Skip to content

Commit

Permalink
add buttons to bottom
Browse files Browse the repository at this point in the history
  • Loading branch information
Dujota committed Feb 6, 2025
1 parent 526d15e commit d94bf0e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion components/listings/ListingDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const ListingDetails = ({ listing, resource }: DetailsProps) => {
return (
<section className='font-poppins mb-[2rem] mt-8 flex flex-row flex-wrap items-start justify-center self-stretch text-left text-[1.5rem] text-black'>
<div id='listing-details' className='flex w-auto flex-col flex-wrap items-center justify-center gap-[0.5rem]'>
<div className='mb-4 flex w-full justify-end'>
<div className='mb-4 flex w-full justify-center'>
<PDFButton listing={listing} resource={resource} />
</div>
<ListingDetailsIcons
Expand All @@ -32,6 +32,9 @@ const ListingDetails = ({ listing, resource }: DetailsProps) => {
<AboutListing description={listing.description} />
<ListingLineBreak />
<KeyFeatures listing={listing} resource={resource} />
<div className='mb-4 flex w-full justify-center'>
<PDFButton listing={listing} resource={resource} />
</div>
</div>
<ContactForm buttonText='Send Message' headingMessage={headingMessage} />
</section>
Expand Down

0 comments on commit d94bf0e

Please sign in to comment.