Skip to content

Commit

Permalink
fix(styles): improve formatting and indentation in MessageSelectionVi…
Browse files Browse the repository at this point in the history
…ew styles
  • Loading branch information
sohailbaig committed Jan 31, 2025
1 parent 9acff70 commit 076eaa2
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions src/components/MessageSelectionView/styles.ts
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
import {StyleSheet} from 'react-native';
import { MD3Theme } from 'react-native-paper';
import {MD3Theme} from 'react-native-paper';

export const getStyles = (theme: MD3Theme) => StyleSheet.create({

Check failure on line 4 in src/components/MessageSelectionView/styles.ts

View workflow job for this annotation

GitHub Actions / build-and-test

Replace `·StyleSheet.create({⏎` with `⏎··StyleSheet.create({`

modalContainer: {
flex: 1,
backgroundColor: theme.colors.background,
padding: 16,
flex: 1,
backgroundColor: theme.colors.background,
padding: 16,
},
headerContainer: {
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-between',
marginBottom: 16,
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-between',
marginBottom: 16,
},
headerText: {
fontSize: 18,
fontWeight: 'bold',
color: theme.colors.primary,
flex: 1,
textAlign: 'center',
fontSize: 18,
fontWeight: 'bold',
color: theme.colors.primary,
flex: 1,
textAlign: 'center',
},
contentText: {
color: theme.colors.primary,
fontSize: 16,
lineHeight: 24,
marginTop: 48,
color: theme.colors.primary,
fontSize: 16,
lineHeight: 24,
marginTop: 48,
},
});

Check failure on line 30 in src/components/MessageSelectionView/styles.ts

View workflow job for this annotation

GitHub Actions / build-and-test

Insert `··`

0 comments on commit 076eaa2

Please sign in to comment.