From e56ef07bb04a94df1f4cf82409fdd8e0e30987a2 Mon Sep 17 00:00:00 2001 From: celine Date: Thu, 25 Sep 2025 22:56:11 -0400 Subject: [PATCH] fixed x overscroll issue on discover --- app/discover/SortedPublicationList.tsx | 2 +- components/ActionBar/Navigation.tsx | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/app/discover/SortedPublicationList.tsx b/app/discover/SortedPublicationList.tsx index d2c4ce74..cb2f03ad 100644 --- a/app/discover/SortedPublicationList.tsx +++ b/app/discover/SortedPublicationList.tsx @@ -11,7 +11,7 @@ export function SortedPublicationList(props: { }) { let [order, setOrder] = useState(props.order); return ( -
+
{ diff --git a/components/ActionBar/Navigation.tsx b/components/ActionBar/Navigation.tsx index 9df024fb..1a272067 100644 --- a/components/ActionBar/Navigation.tsx +++ b/components/ActionBar/Navigation.tsx @@ -89,7 +89,7 @@ const NavigationOptions = (props: { return ( <> - +
@@ -130,10 +130,8 @@ const ReaderButton = (props: { current?: boolean }) => { nav icon={} label="Discover" - subtext={ - !props.current ? "Check out what others are writing!" : undefined - } - className={props.current ? "bg-border-light! border-border" : ""} + subtext={"Check out what others are writing!"} + className={props.current ? "bg-bg-page! border-border-light!" : ""} /> ); -- 2.51.2