Skip to content

Commit 0e04f39

Browse files
committed
fix(scroll): hide the scrollbar on desktop so it matches content size of mobile
1 parent 83783df commit 0e04f39

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Diff for: scss/_scaffolding.scss

+5
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@ body.grade-c {
8787
margin-top: -1px;
8888
}
8989

90+
// hide scrollbars on desktop. they take up witdh of the scroll area
91+
body:not(.platform-webview) .scroll-content::-webkit-scrollbar{
92+
display:none;
93+
}
94+
9095
/**
9196
* Scroll is the scroll view component available for complex and custom
9297
* scroll view functionality.

0 commit comments

Comments
 (0)