1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-12 22:57:38 +02:00

Mobile: Many small fixes and improvements to style and layout to make app more usable

This commit is contained in:
Laurent Cozic
2018-12-15 01:45:35 +01:00
parent 6dca4a0d6b
commit fa0572de77
5 changed files with 10 additions and 13 deletions

View File

@ -110,12 +110,9 @@ class EncryptionConfigScreenComponent extends BaseScreenComponent {
const active = this.props.activeMasterKeyId === mk.id ? '✔' : '';
const inputStyle = {flex:1, marginRight: 10, color: theme.color};
if (Platform.OS === 'ios') {
inputStyle.borderBottomWidth = 1;
inputStyle.borderBottomColor = theme.dividerColor;
}
inputStyle.borderBottomWidth = 1;
inputStyle.borderBottomColor = theme.strongDividerColor;
return (
<View key={mk.id}>
<Text style={this.styles().titleText}>{_('Master Key %s', mk.id.substr(0,6))}</Text>