1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-11 18:24:43 +02:00

Mobile: Fixes #2847: Fixed text issue in config screen on some devices (#2851)

* fixed text issue on some devices and closes #2847

* changes added to global file
This commit is contained in:
Ishant Gupta 2020-04-06 00:35:04 +05:30 committed by GitHub
parent 3f5e6d72d6
commit e024015d5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -89,6 +89,7 @@ function addExtraStyles(style) {
color: style.color,
fontSize: style.fontSize * 1.2,
fontWeight: 'bold',
fontFamily: 'Roboto',
};
style.headerWrapperStyle = {

View File

@ -239,6 +239,7 @@ class ConfigScreenComponent extends BaseScreenComponent {
styles.linkText.borderBottomColor = theme.color;
styles.linkText.flex = 0;
styles.linkText.fontWeight = 'normal';
styles.linkText.fontFamily = 'Roboto';
styles.headerWrapperStyle = Object.assign({}, styles.settingContainer, theme.headerWrapperStyle);