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

Can't edit scrollbar width #303

Closed calvinkarundu closed 8 years ago

calvinkarundu commented 8 years ago

I can't seem to find any settings to edit the width of the scrollbars, not sure if this is the intended behavior or an issue with the package. I just updated to verison 1.2.13 (I'm loving it by the way) running on Ubuntu 14.0.4 and Atom 1.8.0. Everything else looks great though :+1: thank you sir!

varughese commented 8 years ago

Check out my pull request !

Or add this to your stylesheet

.scrollbars-visible-always {
     /deep/::-webkit-scrollbar {
         width: 0.2rem;
         height: 0.2rem;
         z-index: 99999;
    }
}
calvinkarundu commented 8 years ago

@varughese added styles to my stylesheet... works great! :+1: :ok_hand: