diff --git a/ReactNativeClient/lib/renderers/HtmlToHtml.js b/ReactNativeClient/lib/renderers/HtmlToHtml.js
index 3b697f7e2..a6c1c80ea 100644
--- a/ReactNativeClient/lib/renderers/HtmlToHtml.js
+++ b/ReactNativeClient/lib/renderers/HtmlToHtml.js
@@ -1,5 +1,6 @@
const htmlUtils = require('lib/htmlUtils');
const utils = require('./utils');
+const noteStyle = require('./noteStyle');
class HtmlToHtml {
constructor(options) {
@@ -26,8 +27,11 @@ class HtmlToHtml {
}
});
+ const cssStrings = noteStyle(theme, options);
+ const styleHtml = ``;
+
return {
- html: html,
+ html: styleHtml + html,
cssFiles: [],
};
}