diff options
Diffstat (limited to 'src/view/shell/mobile/index.tsx')
-rw-r--r-- | src/view/shell/mobile/index.tsx | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/view/shell/mobile/index.tsx b/src/view/shell/mobile/index.tsx index b836bb76d..01df6c165 100644 --- a/src/view/shell/mobile/index.tsx +++ b/src/view/shell/mobile/index.tsx @@ -157,7 +157,7 @@ export const MobileShell: React.FC = observer(() => { } const screenBg = { - backgroundColor: theme.colorScheme === 'dark' ? colors.gray7 : colors.gray1, + backgroundColor: theme.colorScheme === 'dark' ? colors.black : colors.gray1, } return ( <View testID="mobileShellView" style={[styles.outerContainer, pal.view]}> @@ -202,13 +202,7 @@ export const MobileShell: React.FC = observer(() => { style={[ s.h100pct, screenBg, - current - ? [ - swipeTransform, - // tabMenuTransform, TODO - // isRunningNewTabAnim ? newTabTransform : undefined, TODO - ] - : undefined, + current ? [swipeTransform] : undefined, ]}> <ErrorBoundary> <Com |