Skip to content

Commit

Permalink
Fixed #62
Browse files Browse the repository at this point in the history
  • Loading branch information
fv0 committed Dec 13, 2016
1 parent 175977b commit de35701
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

## 0.20.1
## 0.20.3

- [#62](https://github.com/fv0/native-ui/issues/62): Brought back scrollbars for some areas of Native UI. Thanks for the tip, Matt!

## 0.20.2

- Removed small box-shadows on left and right of tabs
- Cleaned up files
Expand Down
9 changes: 6 additions & 3 deletions styles/atom.less
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@ atom-panel.panel-left,
border-right: none !important;
}

// Remove visible scrollbars but don't prevent scrolling
::-webkit-scrollbar {
display: none;
// Partially hide scrollbars
// https://github.com/fv0/native-ui/issues/62
.suggestion-list-scroller {
&::-webkit-scrollbar {
display: none;
}
}

// Fix for #12
Expand Down

0 comments on commit de35701

Please sign in to comment.