エディタ部のフォントサイズを変更する (Changing the font size)
fontSizeとlineHeightを変更して最適な値を探ってみてください。
code:js
(function(){
// 文字の大きさ デフォルト値は '15px'
const fontSize = '10px';
// 行の高さ デフォルト値は '27px'
const lineHeight = '20px';
function addNewStyle(cssString, id) {
const elemById = document.getElementById(id);
if (elemById) {
elemById.innerHTML = cssString;
} else {
const style = document.createElement('style');
style.innerHTML = cssString;
style.setAttribute('id', id);
document.head.appendChild(style);
}
}
const cssString = `
.editor {
font-size: ${fontSize} !important;
line-height: ${lineHeight} !important;
}
`;
addNewStyle(cssString, 'custom-editor-font-size-style');
})();