Skip to content

Commit 10b984f

Browse files
committed
more tweaks for android label crop
1 parent dbcfc6e commit 10b984f

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

app/client/mobile/src/welcome/Welcome.styled.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,12 @@ export const styles = StyleSheet.create({
8181
},
8282
submit: {
8383
borderRadius: 8,
84-
width: 192,
8584
},
85+
submitLabel: {
86+
width: 128,
87+
textAlign: 'center',
88+
color: 'white',
89+
fontSize: 18,
90+
fontWeight: 600,
91+
}
8692
});

app/client/mobile/src/welcome/Welcome.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ export function Welcome({next}: {next: () => void}) {
5656
</View>
5757
<View style={styles.start}>
5858
<Button mode="contained" textColor="white" style={styles.submit} onPress={next}>
59-
{state.strings.getStarted}
59+
<Text style={styles.submitLabel}>
60+
{state.strings.getStarted}
61+
</Text>
6062
</Button>
6163
</View>
6264
</View>

0 commit comments

Comments
 (0)