Commit 134630072f361ed9a35ad76ab075584d1f4153c7
1 parent
2a7315c277
Exists in
develop
Fix
Hidden horizontal
Showing
1 changed file
with
3 additions
and
0 deletions
Show diff stats
src/scss/scroll.scss
... | ... | @@ -2,6 +2,7 @@ |
2 | 2 | |
3 | 3 | .scroll-y { |
4 | 4 | overflow-y: auto; |
5 | + overflow-x: hidden; | |
5 | 6 | scrollbar-width: none; |
6 | 7 | &::-webkit-scrollbar { |
7 | 8 | display: none; |
... | ... | @@ -10,6 +11,7 @@ |
10 | 11 | |
11 | 12 | .scroll-y-visible { |
12 | 13 | overflow-y: auto; |
14 | + overflow-x: hidden; | |
13 | 15 | &::-webkit-scrollbar { |
14 | 16 | width: 0.75em; |
15 | 17 | } |
... | ... | @@ -37,6 +39,7 @@ |
37 | 39 | |
38 | 40 | .scroll-x { |
39 | 41 | overflow-x: auto; |
42 | + overflow-y: hidden; | |
40 | 43 | scrollbar-width: none; |
41 | 44 | &::-webkit-scrollbar { |
42 | 45 | display: none; |