Skip to content

Commit

Permalink
offline screen
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigoncalves committed Mar 21, 2024
1 parent 3c5e726 commit ea77584
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/core/components/OfflineScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,21 @@ export const OfflineScreen = () => {
return (
<View style={styles.container}>
<View style={styles.card}>
<Typography type="h3" color={sharedColors.white} style={styles.text}>
<Typography
type="h3"
color={sharedColors.text.primary}
style={styles.text}>
{t('offline_screen_title')}
</Typography>
<Typography
type="body2"
color={sharedColors.labelLight}
color={sharedColors.text.label}
style={styles.text}>
{t('offline_screen_description_1')}
</Typography>
<Typography
type="body2"
color={sharedColors.labelLight}
color={sharedColors.text.label}
style={styles.text}>
{t('offline_screen_description_2')}
</Typography>
Expand All @@ -32,7 +35,7 @@ export const OfflineScreen = () => {
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: sharedColors.black,
backgroundColor: sharedColors.background.primary,
justifyContent: 'center',
alignItems: 'center',
},
Expand Down

0 comments on commit ea77584

Please sign in to comment.