import { StyleSheet } from 'react-native'; import { Colors } from '../../../theme'; import { getFontSize } from '../../../utils'; export const styles = StyleSheet.create({ pageWrapper: { display: 'flex', flexDirection: 'row', alignItems: 'center', marginTop: 20, gap: 20 }, headerText: { flex: 1, fontFamily: 'redhat-700', color: Colors.DARK_BLUE, fontSize: getFontSize(14) }, rankingItem: { width: '23%', margin: '1%', display: 'flex', flexDirection: 'column', alignItems: 'center' }, rankingScore: { flex: 0, fontFamily: 'montserrat-700', color: Colors.DARK_BLUE, fontSize: getFontSize(14), }, titleText: { flex: 1, color: Colors.DARK_BLUE, fontWeight: '600', fontSize: getFontSize(12) }, linksBox: { display: 'flex', flexDirection: 'row', gap: 15, alignItems: 'center', paddingBottom: 16 }, countryFlag: { width: 20, height: 20, borderRadius: 20 / 2, borderWidth: 0.5, borderColor: 'gray' }, settingsButton: { width: 40, height: 40, borderRadius: 40 / 2, borderWidth: 1, borderColor: Colors.LIGHT_GRAY, display: 'flex', justifyContent: 'center', alignItems: 'center' }, settings: { position: 'absolute', height: 40, width: 40, right: -10, bottom: -10, justifyContent: 'center' } });