42 lines
No EOL
908 B
JavaScript
42 lines
No EOL
908 B
JavaScript
import * as React from 'react'
|
|
import {StyleSheet} from 'react-native'
|
|
export default StyleSheet.create({
|
|
Container: {
|
|
flex: 1,
|
|
position: 'relative'
|
|
},
|
|
AddButton: {
|
|
position: 'absolute',
|
|
color: 'white',
|
|
backgroundColor: '#202020',
|
|
right: 0,
|
|
height: 36,
|
|
width: 36,
|
|
fontSize: 18,
|
|
display: 'flex',
|
|
textAlign: 'center',
|
|
textAlignVertical: "center",
|
|
borderRadius: 50,
|
|
marginTop: 6,
|
|
marginRight: 12
|
|
},
|
|
RemoveButton: {
|
|
position: 'absolute',
|
|
color: 'white',
|
|
backgroundColor: '#202020',
|
|
right: 0,
|
|
height: 36,
|
|
width: 36,
|
|
fontSize: 18,
|
|
display: 'flex',
|
|
textAlign: 'center',
|
|
textAlignVertical: "center",
|
|
borderRadius: 50,
|
|
marginTop: 4,
|
|
marginRight: 80
|
|
},
|
|
Tab: {
|
|
display: 'flex',
|
|
backgroundColor: 'black'
|
|
}
|
|
}) |