Last active
August 29, 2015 14:19
-
-
Save bultas/08ead03d5fd1a32618ec to your computer and use it in GitHub Desktop.
Atom editor - custom stylesheet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* font-weight problem - https://discuss.atom.io/t/atom-font-weight-anti-alias/4212/6 */ | |
/* | |
* Your Stylesheet | |
* | |
* This stylesheet is loaded when Atom starts up and is reloaded automatically | |
* when it is changed. | |
* | |
* If you are unfamiliar with LESS, you can read more about it here: | |
* http://www.lesscss.org | |
*/ | |
body { | |
-webkit-font-smoothing: antialiased; | |
} | |
.tree-view { | |
} | |
// style the background and foreground colors on the atom-text-editor-element | |
// itself | |
atom-text-editor { | |
} | |
// To style other content in the text editor's shadow DOM, use the ::shadow | |
// expression | |
atom-text-editor::shadow .cursor { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment