diff --git a/ReactNativeClient/lib/components/global-style.js b/ReactNativeClient/lib/components/global-style.js index 4790db1ae5..b810b8925c 100644 --- a/ReactNativeClient/lib/components/global-style.js +++ b/ReactNativeClient/lib/components/global-style.js @@ -89,6 +89,7 @@ function addExtraStyles(style) { color: style.color, fontSize: style.fontSize * 1.2, fontWeight: 'bold', + fontFamily: 'Roboto', }; style.headerWrapperStyle = { diff --git a/ReactNativeClient/lib/components/screens/config.js b/ReactNativeClient/lib/components/screens/config.js index c5117c572c..970c95a8cf 100644 --- a/ReactNativeClient/lib/components/screens/config.js +++ b/ReactNativeClient/lib/components/screens/config.js @@ -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);