Compare commits

...

1 Commits

Author SHA1 Message Date
Samuel Newman 0a06a33ac6 fix right nav overflow 2025-10-22 15:06:16 +03:00
2 changed files with 4 additions and 9 deletions
+3 -7
View File
@@ -27,13 +27,7 @@ export function DesktopFeeds() {
if (isLoading) {
return (
<View
style={[
{
gap: 10,
paddingVertical: 2,
},
]}>
<View style={[{gap: 10}]}>
{Array(5)
.fill(0)
.map((_, i) => (
@@ -60,6 +54,7 @@ export function DesktopFeeds() {
return (
<View
style={[
a.flex_1,
web({
gap: 10,
/*
@@ -89,6 +84,7 @@ export function DesktopFeeds() {
style={[
a.text_md,
a.leading_snug,
a.flex_shrink_0,
current
? [a.font_semi_bold, t.atoms.text]
: [t.atoms.text_contrast_medium],
+1 -2
View File
@@ -79,8 +79,7 @@ export function DesktopRightNav({routeName}: {routeName: string}) {
* Compensate for the right padding above (2px) to retain intended width.
*/
width: width + gutters.paddingLeft + 2,
maxHeight: '100%',
overflowY: 'auto',
maxHeight: '100vh',
}),
]}>
{!isSearchScreen && <DesktopSearch />}