From e9a6e9a4ea0fdcda43bce02c9df5cf23374d72be Mon Sep 17 00:00:00 2001 From: Vincenzo Esposito Date: Tue, 3 Nov 2020 14:51:36 +0100 Subject: [PATCH] [FIX] Rooms header overlapping right icons (#2503) takes into account long names on small screen which led to overlapping title and right buttons on the header bar --- app/containers/Header/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/containers/Header/index.js b/app/containers/Header/index.js index 95ba8c7a2..efb98b65d 100644 --- a/app/containers/Header/index.js +++ b/app/containers/Header/index.js @@ -23,7 +23,7 @@ export const getHeaderHeight = (isLandscape) => { export const getHeaderTitlePosition = insets => ({ left: 60 + insets.left, - right: 80 + insets.right + right: 140 + insets.right }); const styles = StyleSheet.create({