react-native-week-schedule-1
Version:
23 lines (22 loc) • 544 B
JavaScript
;
import { StyleSheet } from 'react-native';
import { grid } from "../../utils/grid.js";
export const getStyles = () => {
return StyleSheet.create({
container: {
position: 'absolute',
width: '100%',
height: '100%'
},
zebraWrapper: {
position: 'absolute',
alignItems: 'center',
justifyContent: 'center',
width: grid.cellWight,
height: grid.cellHeight,
backgroundColor: grid.colors.primary,
overflow: 'hidden'
}
});
};
//# sourceMappingURL=styles.js.map