atom-rspec icon indicating copy to clipboard operation
atom-rspec copied to clipboard

How do I change font size?

Open joowh85 opened this issue 10 years ago • 3 comments

How do I change font size?

joowh85 avatar Jan 08 '15 16:01 joowh85

Currently not possible, I believe.

matugm avatar Apr 20 '15 21:04 matugm

+1

wvengen avatar Dec 04 '15 09:12 wvengen

I worked around this by adding some styles to my styles.less file. Here's what I added so that it looks nice with the One Dark theme that I'm using:

.rspec-console.rspec {
  background-color: #21252b;

  pre,
  pre div atom-text-editor,
  code,
  tt {
    font-size: 22px;
    font-family: Menlo, Consolas, 'DejaVu Sans Mono', monospace;
  }

  .rspec-output {
    background: #21252b;

    .tty-32 { color: lime; }
  }
}

I hope that helps :heart:

andypike avatar Feb 11 '16 12:02 andypike