39 lines
584 B
TypeScript
39 lines
584 B
TypeScript
import { StyleSheet } from 'react-native';
|
|
|
|
export const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
},
|
|
scrollView: {
|
|
flex: 1,
|
|
},
|
|
content: {
|
|
padding: 20,
|
|
},
|
|
title: {
|
|
marginBottom: 16,
|
|
},
|
|
description: {
|
|
marginBottom: 24,
|
|
lineHeight: 24,
|
|
},
|
|
section: {
|
|
marginBottom: 24,
|
|
},
|
|
item: {
|
|
marginTop: 8,
|
|
marginLeft: 8,
|
|
lineHeight: 24,
|
|
},
|
|
infoBox: {
|
|
padding: 16,
|
|
borderRadius: 8,
|
|
backgroundColor: 'rgba(0, 122, 255, 0.1)',
|
|
marginTop: 8,
|
|
},
|
|
infoText: {
|
|
marginTop: 8,
|
|
lineHeight: 22,
|
|
},
|
|
});
|