Skip to content

Instantly share code, notes, and snippets.

@sryze
Last active December 30, 2015 08:07
Show Gist options
  • Save sryze/dec68d9efae0d7541335 to your computer and use it in GitHub Desktop.
Save sryze/dec68d9efae0d7541335 to your computer and use it in GitHub Desktop.
Customize the font size of Atom's file tree and tab bar
/*
* 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
*/
atom-text-editor::shadow .comment {
font-style: normal;
}
@font-size: 13px;
html, body, .tree-view, .tab-bar .tab {
font-size: @font-size;
}
.settings-view {
.settings-panel label,
.breadcrumb,
.setting-title,
.package-card
.package-readme {
font-size: 1rem;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment