You are on page 1of 1

import { StyleSheet } from "react-native";

const styles = StyleSheet.create({


container: {
flex: 1,
padding: 15,
backgroundColor: "#F5FCFF",
marginBottom: 100
},
row: {
flexDirection: "row"
},
mb20:{
marginBottom: 10
},
title: {
fontSize: 20
},
instructionsContainer: {
padding: 15,
borderBottomWidth: 1,
borderBottomColor: "#CCCCCC"
},
instructionsTitle: {
marginBottom: 10,
color: "#333333"
}
});
export default styles;

You might also like