Merge pull request #3176 from MetaMask/FirefoxSettingsOverflow

Scrollable Settings screen for Firefox
feature/default_network_editable
Dan Finlay 7 years ago committed by GitHub
commit daa7caf7bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 7
      ui/app/config.js

@ -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

@ -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', [

Loading…
Cancel
Save