This repository has been archived on 2025-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
Files
terminally-online/src/screens/editors/editorStyles.ts
2023-07-26 16:10:45 +03:00

38 lines
654 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,
},
soloSaveButton: {
flex: 1,
},
});
export default editorStyles;