UNPKG

react-native-timetable

Version:
41 lines (37 loc) 714 B
import { StyleSheet } from 'react-native'; const GREY_COLOR = '#E9EDF0'; const ROW_HEIGHT = 60; export { ROW_HEIGHT }; export const CONTENT_OFFSET = 0; const styles = StyleSheet.create({ container: { paddingTop: CONTENT_OFFSET, }, timeRow: { flex: 0, height: ROW_HEIGHT, }, timeLabelLine: { height: 1, backgroundColor: GREY_COLOR, position: 'absolute', right: 0, left: 0, }, event: { flex: 1, overflow: 'hidden', borderColor: GREY_COLOR, borderLeftWidth: 1, }, events: { position: 'absolute', flexDirection: 'row', left: 0, right: 0, bottom: 0, top: 0, backgroundColor: 'transparent', }, }); export default styles;