Merge pull request #128 from whiteout-io/dev/WO-426

Hide mail list scrollbar in webkit and fix padding issues between iOS and desktop
This commit is contained in:
Tankred Hase 2014-09-19 16:57:41 +02:00
commit a304f13cd2
1 changed files with 6 additions and 1 deletions

View File

@ -83,12 +83,17 @@
.list-wrapper {
flex-grow: 1;
padding: 0 ($padding-horizontal - $scrollbar-width) 0 $padding-horizontal;
padding: 0 $padding-horizontal;
overflow-y: scroll;
// allow scrolling on iOS
-webkit-overflow-scrolling: touch;
// put layer on GPU
transform: translatez(0);
// hide scrollbar in webkit
&::-webkit-scrollbar {
display: none;
}
}
footer {