Skip to content

Commit b588fdc

Browse files
committed
style: remove redundant styles and adjust alignment
1 parent 463eb5d commit b588fdc

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

app/navigation.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,6 @@ const styles = StyleSheet.create({
216216
label: {
217217
fontSize: 20,
218218
fontFamily: 'Tajawal_700Bold',
219-
fontWeight: 'bold',
220219
textAlign: 'right',
221220
},
222221
icon: {

components/TutorialGuide.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,7 @@ export default function TutorialGuide() {
6262
key={i}
6363
style={[
6464
styles.description,
65-
item.align === 'start'
66-
? { textAlign: 'right' }
67-
: { textAlign: 'center' },
65+
item.align === 'start' ? null : { textAlign: 'center' },
6866
]}
6967
>
7068
{item.align === 'start' ? '✓ ' : ''}
@@ -219,7 +217,7 @@ const styles = StyleSheet.create({
219217
alignItems: 'center',
220218
justifyContent: 'center',
221219
width: '100%',
222-
flexDirection: 'row-reverse',
220+
flexDirection: 'row',
223221
},
224222
buttonText: {
225223
color: 'white',

0 commit comments

Comments
 (0)