mirror of
https://github.com/moparisthebest/mail
synced 2025-02-25 07:11:48 -05:00
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:
commit
a304f13cd2
@ -83,12 +83,17 @@
|
|||||||
|
|
||||||
.list-wrapper {
|
.list-wrapper {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
padding: 0 ($padding-horizontal - $scrollbar-width) 0 $padding-horizontal;
|
padding: 0 $padding-horizontal;
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
// allow scrolling on iOS
|
// allow scrolling on iOS
|
||||||
-webkit-overflow-scrolling: touch;
|
-webkit-overflow-scrolling: touch;
|
||||||
// put layer on GPU
|
// put layer on GPU
|
||||||
transform: translatez(0);
|
transform: translatez(0);
|
||||||
|
|
||||||
|
// hide scrollbar in webkit
|
||||||
|
&::-webkit-scrollbar {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user