Last Updated: February 25, 2016
·
8.341K
· leek

Hide Scrollbars in Atom

Add this snippet of code to your Atom editor stylesheet to have all scrollbars not display but remain functional (ie; with a scrollwheel):

::-webkit-scrollbar { 
    display: none; 
}