Use px insteads of em to specify SelectField font size valid value

This commit is contained in:
AlexandreSi
2022-03-23 09:42:30 +01:00
parent cb991afb18
commit 930cc91b32
2 changed files with 2 additions and 2 deletions

View File

@@ -606,7 +606,7 @@ export const LeaderboardAdmin = ({ onLoading }: Props) => {
});
}}
disabled={isRequestPending || isEditingName}
inputStyle={{ fontSize: '0.875em' }}
inputStyle={{ fontSize: 14 }}
helperMarkdownText={
currentLeaderboard.playerUnicityDisplayChoice === 'FREE'
? i18n._(

View File

@@ -29,7 +29,7 @@ type Props = {|
flex?: 1,
width?: 'auto',
},
inputStyle?: {| fontSize: '0.875em' |},
inputStyle?: {| fontSize: 14 |},
margin?: 'none' | 'dense',
floatingLabelText?: React.Node,