Skip to content

Commit

Permalink
update: centering dots
Browse files Browse the repository at this point in the history
  • Loading branch information
jaaaaavier committed Dec 23, 2024
1 parent 0c6a365 commit 17e4477
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/business/TestimonialsSectionForBusiness.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ export const TestimonialsSectionForBusiness = ({ textContent }: TestimonialsSect
<div className="flex items-center justify-center space-x-2 text-center">
<button onClick={onLeftMobileArrowClick} className="flex items-center">
<CaretLeft size={24} />
<DotsThree size={24} />
</button>
<DotsThree size={24} />
<button onClick={onRightMobileArrowClick} className="flex items-center">
<CaretRight size={24} />
</button>
Expand Down
10 changes: 6 additions & 4 deletions src/components/business/WhatCanWeDo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,12 @@ export const WhatCanWeDo = ({ textContent }: WhatCanWeDoProps): JSX.Element => {

<div className="flex flex-row items-center justify-center space-x-2 py-4">
{selectedTab !== 0 && (
<button onClick={onLeftArrowClick} className="flex items-center text-white">
<CaretLeft size={24} />
<DotsThree size={24} />
</button>
<>
<button onClick={onLeftArrowClick} className="flex items-center text-white">
<CaretLeft size={24} />
</button>
<DotsThree size={24} className="text-white"></DotsThree>
</>
)}

<button
Expand Down

0 comments on commit 17e4477

Please sign in to comment.