Skip to content

Commit

Permalink
Merge pull request #3176 from MetaMask/FirefoxSettingsOverflow
Browse files Browse the repository at this point in the history
Scrollable Settings screen for Firefox
  • Loading branch information
danfinlay authored Feb 1, 2018
2 parents 3b89a3f + 10e75dc commit daa7caf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- Removed unneeded data from storage
- Add a "reset account" feature to Settings
- Add warning for importing some kinds of files.
- Scrollable Setting view for Firefox.

## 3.13.8 2018-1-29

Expand Down
7 changes: 6 additions & 1 deletion ui/app/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ ConfigScreen.prototype.render = function () {
var warning = state.warning

return (
h('.flex-column.flex-grow', [
h('.flex-column.flex-grow', {
style:{
maxHeight: '465px',
overflowY: 'auto',
},
}, [

// subtitle and nav
h('.section-title.flex-row.flex-center', [
Expand Down

0 comments on commit daa7caf

Please sign in to comment.