Use overflow-y: auto instead of overflow-y: scroll

This commit is contained in:
MaxLap
2020-01-31 12:08:06 -06:00
committed by Mo Bitar
parent 0bf4abdf55
commit e7cb54f942
5 changed files with 6 additions and 6 deletions

View File

@@ -93,7 +93,7 @@
.windows-web &, .windows-desktop & {
overflow-y: hidden;
&:hover {
overflow-y: scroll;
overflow-y: auto;
overflow-y: overlay; // overlay is not supported on ff, so keep previous statement up
}
}

View File

@@ -32,7 +32,7 @@
// Unfortunately must affect every platform since no way to hide just for Windows.
overflow-y: hidden;
&:hover {
overflow-y: scroll;
overflow-y: auto;
overflow-y: overlay; // overlay is not supported on ff, so keep previous statement up
}
}