Skip to content

Commit

Permalink
Merge pull request #543 from TaeMochi12/main
Browse files Browse the repository at this point in the history
Added borders to testimonials. Issue number #484
  • Loading branch information
VaibhavArora314 authored Aug 2, 2024
2 parents bfcab16 + 977e085 commit 480b344
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/TestimonialSlider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const TestimonialSlider: React.FC = () => {
</button>
<div className="flex overflow-hidden max-w-full">
{testimonials.slice(currentIndex, currentIndex + slidesToShow).map((testimonial, index) => (
<div key={index} className="testimonial mx-2 p-6 md:p-10 rounded-lg shadow-lg bg-white dark:bg-[#000435] text-[#000435] dark:text-white flex flex-col items-center justify-center min-w-[260px] md:min-w-[350px] lg:min-w-[400px]">
<div key={index} className="testimonial border border-blue-400 dark:border-gray-00 px-2 py-4 md:py-24 rounded-md mx-2 p-6 md:p-10 rounded-lg shadow-lg bg-white dark:bg-[#000435] text-[#000435] dark:text-white flex flex-col items-center justify-center min-w-[260px] md:min-w-[350px] lg:min-w-[400px]">
<img
src={testimonial.image}
alt={`${testimonial.author}'s picture`}
Expand Down Expand Up @@ -140,4 +140,4 @@ const TestimonialSlider: React.FC = () => {
);
};

export default TestimonialSlider;
export default TestimonialSlider;

0 comments on commit 480b344

Please sign in to comment.