There are unnecessary scroll bars for certain changeset views on Firefox + Windows combo:
{F353814}
A solution my colleague found is to use the following Stylish rule:
```
/* Changeset scrollbars */
@-moz-document domain('your.phabricator-domain.com') {
.changeset-view-content {
overflow-y: hidden;
}
}
```