This is an unsupported bookmarklet hack to change the fontsize of the editor.
Bookmarklets Explained here
Open bookmarks in Chrome Browser. Open bookmark manager and add the following snippet inside the block as the URL.
javascript: (() => {
const allCSS = [...document.styleSheets];
var results = allCSS.filter(function(entry) { return entry.href?.match("css/editorPage") != null; });
const allRules = [...results[0].cssRules];
var rule = allRules.filter(function(entry) { return entry.selectorText === ".tr-paragraph"; });
rule[0].style.fontSize='30px';
})();