fix right nav overflow
This commit is contained in:
@@ -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],
|
||||
|
||||
@@ -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 />}
|
||||
|
||||
Reference in New Issue
Block a user