how to change the console font size ?
find styles/script.less. add font-size to .script-view .line.
then restart the atom,you can see font-size changed
For me: styles.less
from the atom menu, atom > stylesheet
@wisheslee @brentgreeff I am new here, can you please explain in detail? Where can I find script.less? And can you provide the lines of code I need to edit there?
For me:
C:UsersUser.atompackagesscriptstylesscript.less
At very bottom of the file:
.script-view {
.panel-body pre {
background: @tool-panel-background-color;
color: @text-color;
}
.output {
}
.stderr {
color: @text-color-error;
}
.line {
border-radius: 0px;
margin: 0px;
padding: 0px;
**font-size: 14px;**
}
}
It would be nice if this was a config option.
Most helpful comment
For me:
C:UsersUser.atompackagesscriptstylesscript.less
At very bottom of the file: