atom-haskell-archive / haskell-ghc-mod

haskell-ghc-mod atom package
https://atom.io/packages/haskell-ghc-mod
MIT License
69 stars 20 forks source link

Allow font configuration #122

Closed japgolly closed 8 years ago

japgolly commented 8 years ago

The little console that shows errors, warnings, etc is pretty hard to read on my system. I'd like to make the font bigger, maybe chose a different one.

lierdakil commented 8 years ago

With ide-haskell 1.5.3, something like this in your stylesheet will work:

ide-haskell-panel-item > * {
  font-size: 18pt !important;
  font-family: "Comic Sans MS" !important;
}
japgolly commented 8 years ago

That did the trick! Thanks.​