react-native-week-schedule-1
Version:
22 lines (20 loc) • 600 B
text/typescript
import { StyleSheet } from 'react-native';
import { scaleFontSize, scaleHorizontal } from '../../utils/Utils';
import { grid } from '../../utils/grid';
export const getStyles = () => {
return StyleSheet.create({
container: {
overflow: 'visible',
},
text: {
fontSize: scaleFontSize(11),
fontWeight: '400',
textAlign: 'right',
color: grid.colors.text,
width: grid.cellWight,
height: grid.cellHeight,
paddingRight: scaleHorizontal(7),
top: -7,
},
});
};