GH-1276 - Updating scroll on IOS (#1310)

This commit is contained in:
Asaad Mahmood 2021-09-22 22:16:02 +05:00 committed by GitHub
parent a90fde5e52
commit 33dfd798d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 1 deletions

View File

@ -49,5 +49,11 @@
> div:nth-child(2) {
padding: 0 0 0 1px;
margin-left: 80px;
@media (max-width: 768px) {
margin-left: 0;
padding-left: 20px;
-webkit-overflow-scrolling: touch;
}
}
}

View File

@ -23,7 +23,7 @@
rgba(var(--center-channel-color-rgb), 0.1) 0 2px 4px;
border-radius: var(--modal-rad);
padding: 0;
-webkit-overflow-scrolling: touch;
overflow-x: hidden;
overflow-y: auto;

View File

@ -9,6 +9,11 @@
color: rgba(var(--center-channel-color-rgb), 0.64);
align-items: center;
@media (max-width: 768px) {
overflow: auto;
-webkit-overflow-scrolling: touch;
}
> div {
margin-right: 12px;
white-space: nowrap;