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 236930f commit cce699d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/common/SocialLinks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ interface SocialLinksProps {
const SocialLinks: FC<SocialLinksProps> = ({ aboutPage, social }): ReactElement => {
const wrapperStyle = aboutPage
? 'grid grid-cols-3 gap-x-8 gap-y-3 largeTablet:flex'
: 'flex flex-wrap relative gap-x-3 gap-y-2 pr-2'
: 'flex flex-wrap relative gap-x-3 pr-2'

return (
social
Expand Down
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 cce699d

Please sign in to comment.