atom-rspec
atom-rspec copied to clipboard
How do I change font size?
How do I change font size?
Currently not possible, I believe.
+1
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: