1

Is there a way to tell Github Zen mode (full screen text editor) to use a fixed-width font?

Mark Harrison
  • 297,451
  • 125
  • 333
  • 465

1 Answers1

1

I use Firefox with Stylish:

@-moz-document domain(github.com) {
  #fullscreen-contents {
    font-family: Consolas;
  }
}

Source

Zombo
  • 1
  • 62
  • 391
  • 407