Skip to content

Commit ddd954c

Browse files
committed
fixing dark style on ipad
1 parent f169f98 commit ddd954c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/client/mobile/src/assemble/Assemble.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export function Assemble({layout, close, openConversation}: {layout: string, clo
7171

7272
return (
7373
<View style={styles.request}>
74-
<Surface elevation={layout === 'large' ? 1 : 9} mode="flat" style={styles.fullWidthSurface}>
74+
<Surface elevation={layout === 'large' ? 2 : 9} mode="flat" style={styles.fullWidthSurface}>
7575
<SafeAreaView edges={['left', 'right']} style={layout === 'large' ? {...styles.headerSafeBar, borderColor: theme.colors.elevation.level9} : styles.headerSafeArea}>
7676
<Pressable style={styles.navIcon} onPress={close}>
7777
{layout === 'large' && (
@@ -107,7 +107,7 @@ export function Assemble({layout, close, openConversation}: {layout: string, clo
107107
</SafeAreaView>
108108
</Surface>
109109

110-
<Surface elevation={1} mode="flat" style={styles.scrollWrapper}>
110+
<Surface elevation={layout === 'large' ? 2 : 1} mode="flat" style={styles.scrollWrapper}>
111111
{state.connected.length > 0 && (
112112
<FlatList
113113
style={styles.cards}

0 commit comments

Comments
 (0)