Skip to content

Commit

Permalink
fix(scroll): hide the scrollbar on desktop so it matches content size…
Browse files Browse the repository at this point in the history
… of mobile
  • Loading branch information
perrygovier committed Feb 13, 2015
1 parent 83783df commit 0e04f39
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scss/_scaffolding.scss
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@ body.grade-c {
margin-top: -1px;
}

// hide scrollbars on desktop. they take up witdh of the scroll area
body:not(.platform-webview) .scroll-content::-webkit-scrollbar{
display:none;
}

/**
* Scroll is the scroll view component available for complex and custom
* scroll view functionality.
Expand Down

0 comments on commit 0e04f39

Please sign in to comment.