atom-material / atom-material-ui

A dynamic UI theme for Atom that follows Google's Material Design Guidelines
MIT License
817 stars 204 forks source link

scrollbar is too small in tree view #215

Closed seanmars closed 8 years ago

seanmars commented 8 years ago

The scrollbar in tree view is too difficult to drag it. Always drag code or folder

silvestreh commented 8 years ago

Here's a quick fix for you. Open your user stylesheet located in ~/.atom/styles.less and paste this:

.scrollbars-visible-always /deep/::-webkit-scrollbar {
    width: 1rem;
    height: 1rem;
}
seanmars commented 8 years ago

So good! thanks!