Atom-script: console font size

Created on 23 Dec 2016  路  5Comments  路  Source: atom-community/atom-script

how to change the console font size ?

Most helpful comment

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;**
  }
}

All 5 comments

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.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

JohnnyUrosevic picture JohnnyUrosevic  路  5Comments

ChenZhongPu picture ChenZhongPu  路  3Comments

haollhao picture haollhao  路  6Comments

CHOW1997 picture CHOW1997  路  7Comments

cmdshorty picture cmdshorty  路  5Comments