35 lines
616 B
TypeScript
35 lines
616 B
TypeScript
import { StyleSheet } from 'react-native';
|
|
|
|
const editorStyles = StyleSheet.create({
|
|
scrollView: {
|
|
flexGrow: 1,
|
|
flexDirection: 'column',
|
|
justifyContent: 'space-between',
|
|
paddingHorizontal: '4%',
|
|
},
|
|
scrollViewPortrait: {
|
|
paddingVertical: '4%',
|
|
},
|
|
scrollViewLandscape: {
|
|
paddingVertical: '2%',
|
|
},
|
|
editorView: {
|
|
flex: 1,
|
|
justifyContent: 'flex-start',
|
|
},
|
|
saveButtonView: {
|
|
flexDirection: 'row',
|
|
width: '100%',
|
|
},
|
|
saveAndAddButton: {
|
|
flex: 1,
|
|
marginRight: 5,
|
|
},
|
|
saveButton: {
|
|
flex: 1,
|
|
marginLeft: 5,
|
|
},
|
|
});
|
|
|
|
export default editorStyles;
|