-
-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathstyles.js
More file actions
26 lines (25 loc) · 529 Bytes
/
styles.js
File metadata and controls
26 lines (25 loc) · 529 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import {StyleSheet} from 'react-native';
export default StyleSheet.create({
root: {padding: 20, minHeight: 300},
title: {textAlign: 'center', fontSize: 30},
codeFieldRoot: {marginTop: 20},
cell: {
width: 25,
height: 30,
lineHeight: 28,
fontSize: 20,
borderWidth: 2,
borderRadius: 3,
borderColor: '#00000030',
textAlign: 'center',
},
separator: {
height: 2,
width: 10,
backgroundColor: '#000',
alignSelf: 'center',
},
focusCell: {
borderColor: '#000',
},
});