mirror of
https://github.com/balzack/databag.git
synced 2025-03-13 09:00:06 +00:00
19 lines
339 B
JavaScript
19 lines
339 B
JavaScript
import { StyleSheet } from 'react-native';
|
|
import { Colors } from 'constants/Colors';
|
|
|
|
export const styles = StyleSheet.create({
|
|
overlay: {
|
|
top: 0,
|
|
width: '100%',
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
position: 'absolute',
|
|
paddingRight: 16,
|
|
maxHeight: 50,
|
|
},
|
|
label: {
|
|
textOverlay: 'center',
|
|
},
|
|
})
|
|
|