Skip to content

Commit

Permalink
fix: fixed text overflow on testimonial section
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-phantom committed Aug 2, 2023
1 parent fd5d775 commit 936d0be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const Testimonials: FC<TestimonialsProps> = ({ data }) => {
{data?.heading || ''}
</Heading>

<div className="w-full mt-[46px] grid-cols-1 largeTablet:grid-cols-3 gap-9 largeTablet:mt-24 hidden largeTablet:grid ">
<div className="w-full mt-[46px] grid-cols-1 largeTablet:grid-cols-2 laptop:grid-cols-3 laptop:grid gap-9 largeTablet:mt-24 hidden largeTablet:grid ">
{testimonials.map((testimonial) => (
<Testimonial
key={testimonial.twitterUsername}
Expand Down

0 comments on commit 936d0be

Please sign in to comment.