Skip to content

Commit

Permalink
re-add login folder
Browse files Browse the repository at this point in the history
  • Loading branch information
christophertorres1 committed Jan 2, 2025
1 parent 22800b7 commit 800b7e1
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions src/screens/Login/styles.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
import { StyleSheet } from 'react-native';
import colors from '@/styles/colors';
import typography from '@/styles/typography';

export const styles = StyleSheet.create({
loginContainer: {
padding: 40,
flex: 1,
justifyContent: 'center',
},

loginText: {
...typography.heading3,
color: colors.primary,
},

logoContainer: {
alignItems: 'center',
paddingTop: 20,
paddingBottom: 70,
},

logo: {
height: 200,
marginTop: 20,
marginBottom: 70,
},

button: {
backgroundColor: '#446127',
padding: 15,
borderRadius: 5,
alignItems: 'center',
marginBottom: 10,
},

buttonText: {
...typography.largeBold,
color: colors.white,
},

adminLoginContainer: {
flex: 0,
flexDirection: 'row',
justifyContent: 'flex-end',
paddingTop: 10,
},

adminLoginText: {
...typography.smallBold,
color: colors.gray3,
},
});

0 comments on commit 800b7e1

Please sign in to comment.