Refactor styles
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
34
src/screens/editors/editorStyles.ts
Normal file
34
src/screens/editors/editorStyles.ts
Normal file
@@ -0,0 +1,34 @@
|
||||
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;
|
Reference in New Issue
Block a user