fix borders for labels tab (#3261)
* fix borders for labels tab * rm entire wrapping viewzio/stable
parent
9c49b209ca
commit
4de8e8fa14
|
@ -48,7 +48,6 @@ export const ProfileLabelsSection = React.forwardRef<
|
||||||
},
|
},
|
||||||
ref,
|
ref,
|
||||||
) {
|
) {
|
||||||
const t = useTheme()
|
|
||||||
const {_} = useLingui()
|
const {_} = useLingui()
|
||||||
const {height: minHeight} = useSafeAreaFrame()
|
const {height: minHeight} = useSafeAreaFrame()
|
||||||
|
|
||||||
|
@ -66,17 +65,7 @@ export const ProfileLabelsSection = React.forwardRef<
|
||||||
}))
|
}))
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<CenteredView>
|
<CenteredView style={{flex: 1, minHeight}} sideBorders>
|
||||||
<View
|
|
||||||
style={[
|
|
||||||
a.border_l,
|
|
||||||
a.border_r,
|
|
||||||
a.border_t,
|
|
||||||
t.atoms.border_contrast_low,
|
|
||||||
{
|
|
||||||
minHeight,
|
|
||||||
},
|
|
||||||
]}>
|
|
||||||
{isLabelerLoading ? (
|
{isLabelerLoading ? (
|
||||||
<View style={[a.w_full, a.align_center]}>
|
<View style={[a.w_full, a.align_center]}>
|
||||||
<Loader size="xl" />
|
<Loader size="xl" />
|
||||||
|
@ -96,7 +85,6 @@ export const ProfileLabelsSection = React.forwardRef<
|
||||||
headerHeight={headerHeight}
|
headerHeight={headerHeight}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</View>
|
|
||||||
</CenteredView>
|
</CenteredView>
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
@ -149,13 +137,7 @@ export function ProfileLabelsSectionInner({
|
||||||
}}
|
}}
|
||||||
contentOffset={{x: 0, y: headerHeight * -1}}
|
contentOffset={{x: 0, y: headerHeight * -1}}
|
||||||
onScroll={scrollHandler}>
|
onScroll={scrollHandler}>
|
||||||
<View
|
<View style={[a.pt_xl, a.px_lg, a.border_t, t.atoms.border_contrast_low]}>
|
||||||
style={[
|
|
||||||
a.pt_xl,
|
|
||||||
a.px_lg,
|
|
||||||
isNative && a.border_t,
|
|
||||||
t.atoms.border_contrast_low,
|
|
||||||
]}>
|
|
||||||
<View>
|
<View>
|
||||||
<Text style={[t.atoms.text_contrast_high, a.leading_snug, a.text_sm]}>
|
<Text style={[t.atoms.text_contrast_high, a.leading_snug, a.text_sm]}>
|
||||||
<Trans>
|
<Trans>
|
||||||
|
|
Loading…
Reference in New Issue