From 97fce9f85a78c739222b0c87c0786f49a20f228b Mon Sep 17 00:00:00 2001 From: Brian Lovin Date: Fri, 14 Jun 2024 16:34:50 -0600 Subject: [PATCH] Revert "fix: small screen overflowing issue" (#2028) This reverts commit 1465797dd6b9c7a5db1fff2108f2218c7909a9c0. --- src/components/Home/Intro.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/Home/Intro.tsx b/src/components/Home/Intro.tsx index 2326c8bc2..86b9bd703 100644 --- a/src/components/Home/Intro.tsx +++ b/src/components/Home/Intro.tsx @@ -33,13 +33,13 @@ function TableRow({ href, title, subtitle, date }: TableRowProps) { target="_blank" rel="noopener noreferrer" href={href} - className="flex items-center space-x-3 group lg:text-base text-xs" + className="flex items-center space-x-4 group" > - + {title} - - {subtitle && {subtitle}} + + {subtitle && {subtitle}} {date && ( {date} )} @@ -50,7 +50,7 @@ function TableRow({ href, title, subtitle, date }: TableRowProps) { function SectionContainer(props) { return (
)