Fixed Interactive dialog radio buttons style (#7331)
* Fixed Interactive dialog radio buttons style * removed unnecacary spaces * remove spaces --------- Co-authored-by: Ilia Polozov <ipolozov@stsoft.ru>
This commit is contained in:
parent
0530f96b6e
commit
265be35dce
1 changed files with 5 additions and 1 deletions
|
|
@ -31,6 +31,10 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => {
|
|||
fontSize: 12,
|
||||
color: theme.linkColor,
|
||||
},
|
||||
text: {
|
||||
fontSize: 12,
|
||||
color: theme.centerChannelColor,
|
||||
},
|
||||
};
|
||||
});
|
||||
|
||||
|
|
@ -61,7 +65,7 @@ function RadioEntry({
|
|||
>
|
||||
<View style={style.container}>
|
||||
<View style={style.rowContainer}>
|
||||
<Text>{text}</Text>
|
||||
<Text style={style.text}>{text}</Text>
|
||||
</View>
|
||||
{isSelected && (
|
||||
<CompassIcon
|
||||
|
|
|
|||
Loading…
Reference in a new issue