diff options
Diffstat (limited to 'src/view/com/home/HomeHeaderLayoutMobile.tsx')
-rw-r--r-- | src/view/com/home/HomeHeaderLayoutMobile.tsx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/view/com/home/HomeHeaderLayoutMobile.tsx b/src/view/com/home/HomeHeaderLayoutMobile.tsx index f5397d717..832396092 100644 --- a/src/view/com/home/HomeHeaderLayoutMobile.tsx +++ b/src/view/com/home/HomeHeaderLayoutMobile.tsx @@ -41,12 +41,12 @@ export function HomeHeaderLayoutMobile({ return ( <Animated.View - style={[pal.view, pal.border, styles.tabBar, headerMinimalShellTransform]} + style={[pal.border, styles.tabBar, headerMinimalShellTransform]} onLayout={e => { - headerHeight.value = e.nativeEvent.layout.height + headerHeight.set(e.nativeEvent.layout.height) }}> <View style={[pal.view, styles.topBar]}> - <View style={[pal.view, {width: 100}]}> + <View style={[{width: 100}]}> <TouchableOpacity testID="viewHeaderDrawerBtn" onPress={onPressAvi} @@ -68,7 +68,6 @@ export function HomeHeaderLayoutMobile({ atoms.justify_end, atoms.align_center, atoms.gap_md, - pal.view, {width: 100}, ]}> {IS_DEV && ( |