29 lines
514 B
TypeScript
29 lines
514 B
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
export const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
paddingInline: 30,
|
|
paddingBlock: 20,
|
|
},
|
|
imageBackground: {
|
|
height: "100%",
|
|
width: "100%",
|
|
// justifyContent: "center",
|
|
// alignItems: "center",
|
|
},
|
|
|
|
input: {
|
|
backgroundColor: "#fff",
|
|
borderWidth: 1,
|
|
borderColor: "#ccc",
|
|
padding: 10,
|
|
marginBottom: 10,
|
|
borderRadius: 5,
|
|
width: "80%",
|
|
},
|
|
image: {
|
|
width: 30,
|
|
height: 30,
|
|
},
|
|
}); |