123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- import { StyleSheet } from 'react-native';
- import { Colors } from 'src/theme';
- import { getFontSize } from 'src/utils';
- export const styles = StyleSheet.create({
- wrapper: {
- paddingTop: 16,
- marginTop: 4,
- gap: 20,
- paddingBottom: 32
- },
- scoreContainer: {
- flexDirection: 'row',
- flexWrap: 'wrap',
- justifyContent: 'space-between'
- },
- headerText: {
- flex: 1,
- fontFamily: 'redhat-700',
- color: Colors.DARK_BLUE,
- fontSize: getFontSize(14)
- },
- modal: {
- justifyContent: 'flex-end',
- margin: 0
- },
- updatesTextCount: {
- fontSize: 12,
- fontWeight: '700',
- color: Colors.DARK_BLUE
- },
- updatesText: {
- fontSize: 12,
- fontWeight: '600',
- color: Colors.DARK_BLUE
- },
- titleText: {
- flex: 1,
- color: Colors.DARK_BLUE,
- fontWeight: '600',
- fontSize: getFontSize(12)
- },
- rankingItem: {
- width: '18%',
- margin: '1%',
- display: 'flex',
- flexDirection: 'column',
- alignItems: 'center',
- backgroundColor: Colors.FILL_LIGHT,
- borderRadius: 4,
- padding: 4,
- gap: 1
- },
- rankingScore: {
- flex: 0,
- fontFamily: 'montserrat-700',
- color: Colors.DARK_BLUE,
- fontSize: getFontSize(14)
- },
- avatar: {
- borderRadius: 28 / 2,
- width: 28,
- height: 28,
- borderWidth: 1,
- borderColor: Colors.DARK_LIGHT
- },
- userShowMore: {
- backgroundColor: Colors.FILL_LIGHT,
- flexDirection: 'row',
- alignItems: 'center',
- justifyContent: 'center',
- gap: 2
- },
- dots: {
- width: 3,
- height: 3,
- borderRadius: 3 / 2,
- backgroundColor: Colors.DARK_BLUE
- },
- updates: {
- flexDirection: 'row',
- alignItems: 'center',
- gap: 6,
- width: '50%',
- padding: 4
- },
- series: {
- display: 'flex',
- flexDirection: 'column',
- gap: 5,
- alignItems: 'center'
- }
- });
|